Lines Matching refs:Execution
58 static int test(bool useCpuOnly, Execution::ComputeMode computeMode, bool allowSyncExecHal = true) { in test()
76 Execution::setComputeMode(computeMode); in test()
80 case Execution::ComputeMode::SYNC: in test()
82 case Execution::ComputeMode::ASYNC: in test()
84 case Execution::ComputeMode::BURST: in test()
86 case Execution::ComputeMode::FENCED: in test()
133 int n = test(/*useCpuOnly=*/false, Execution::ComputeMode::ASYNC) | in main()
134 test(/*useCpuOnly=*/false, Execution::ComputeMode::SYNC) | in main()
135 test(/*useCpuOnly=*/true, Execution::ComputeMode::ASYNC) | in main()
136 test(/*useCpuOnly=*/true, Execution::ComputeMode::SYNC); in main()
143 n |= test(/*useCpuOnly=*/false, Execution::ComputeMode::ASYNC, /*allowSyncExecHal=*/false) | in main()
144 test(/*useCpuOnly=*/false, Execution::ComputeMode::SYNC, /*allowSyncExecHal=*/false); in main()
151 n |= test(/*useCpuOnly=*/false, Execution::ComputeMode::BURST); in main()