Lines Matching refs:plan
335 ExecutePreference preference, ExecutionPlan* plan) { in partitionTheWork() argument
337 devices, static_cast<uint32_t>(preference), plan); in partitionTheWork()
892 ExecutionPlan plan; in TEST_F() local
893 ASSERT_EQ(model.partitionTheWork(devices, ExecutePreference::PREFER_LOW_POWER, &plan), in TEST_F()
895 ASSERT_EQ(plan.forTest_getKind(), ExecutionPlan::Kind::COMPOUND); in TEST_F()
896 const auto& steps = plan.forTest_compoundGetSteps(); in TEST_F()
1044 ExecutionPlan plan; in TEST_F() local
1045 ASSERT_EQ(model.partitionTheWork(devices, ExecutePreference::PREFER_LOW_POWER, &plan), in TEST_F()
1047 ASSERT_EQ(plan.forTest_getKind(), ExecutionPlan::Kind::COMPOUND); in TEST_F()
1048 const auto& steps = plan.forTest_compoundGetSteps(); in TEST_F()
1163 ExecutionPlan plan; in TEST_F() local
1164 ASSERT_EQ(model.partitionTheWork(devices, ExecutePreference::PREFER_LOW_POWER, &plan), in TEST_F()
1166 ASSERT_EQ(plan.forTest_getKind(), ExecutionPlan::Kind::SIMPLE); in TEST_F()
1167 ASSERT_EQ(plan.forTest_simpleGetDevice()->getName(), expectDevice); in TEST_F()