Lines Matching refs:Execution
54 static int test(bool useCpuOnly, Execution::ComputeMode computeMode) { in test()
70 Execution::setComputeMode(computeMode); in test()
74 case Execution::ComputeMode::SYNC: in test()
76 case Execution::ComputeMode::ASYNC: in test()
78 case Execution::ComputeMode::BURST: in test()
80 case Execution::ComputeMode::FENCED: in test()
127 int n = test(/*useCpuOnly=*/false, Execution::ComputeMode::ASYNC) | in main()
128 test(/*useCpuOnly=*/false, Execution::ComputeMode::SYNC) | in main()
129 test(/*useCpuOnly=*/true, Execution::ComputeMode::ASYNC) | in main()
130 test(/*useCpuOnly=*/true, Execution::ComputeMode::SYNC); in main()
137 n |= test(/*useCpuOnly=*/false, Execution::ComputeMode::BURST); in main()