Home | History | Annotate | Download | only in test

Lines Matching defs:plan

335                          ExecutePreference preference, ExecutionPlan* plan) {
337 devices, static_cast<uint32_t>(preference), plan);
794 // for example, verify that each step within the plan has the
892 ExecutionPlan plan;
893 ASSERT_EQ(model.partitionTheWork(devices, ExecutePreference::PREFER_LOW_POWER, &plan),
895 ASSERT_EQ(plan.forTest_getKind(), ExecutionPlan::Kind::COMPOUND);
896 const auto& steps = plan.forTest_compoundGetSteps();
996 // so there should be no execution plan.
1004 // have an execution plan), discover the dimensionless
1035 // for example, verify that each step within the plan has the
1044 ExecutionPlan plan;
1045 ASSERT_EQ(model.partitionTheWork(devices, ExecutePreference::PREFER_LOW_POWER, &plan),
1047 ASSERT_EQ(plan.forTest_getKind(), ExecutionPlan::Kind::COMPOUND);
1048 const auto& steps = plan.forTest_compoundGetSteps();
1163 ExecutionPlan plan;
1164 ASSERT_EQ(model.partitionTheWork(devices, ExecutePreference::PREFER_LOW_POWER, &plan),
1166 ASSERT_EQ(plan.forTest_getKind(), ExecutionPlan::Kind::SIMPLE);
1167 ASSERT_EQ(plan.forTest_simpleGetDevice()->getName(), expectDevice);