• Home
  • Raw
  • Download

Lines Matching refs:outputData

186     std::vector<cl_int> outputData(num_elements);  in test_execute_kernel_local_sizes()  local
227 (void *)outputData.data(), 0, NULL, NULL); in test_execute_kernel_local_sizes()
232 if (outputData[i] != (int)inputData[i]) in test_execute_kernel_local_sizes()
249 (void *)outputData.data(), 0, NULL, NULL); in test_execute_kernel_local_sizes()
254 if (outputData[i] != (int)inputData[i]) in test_execute_kernel_local_sizes()
271 (void *)outputData.data(), 0, NULL, NULL); in test_execute_kernel_local_sizes()
276 if (outputData[i] != (int)inputData[i]) in test_execute_kernel_local_sizes()
290 (void *)outputData.data(), 0, NULL, NULL); in test_execute_kernel_local_sizes()
295 if (outputData[i] != (int)inputData[i]) in test_execute_kernel_local_sizes()
317 std::vector<cl_int> outputData(num_elements); in test_set_kernel_arg_by_index() local
360 (void *)outputData.data(), 0, NULL, NULL); in test_set_kernel_arg_by_index()
365 if (outputData[i] != (int)inputData[i]) in test_set_kernel_arg_by_index()
387 std::vector<cl_int> outputData(num_elements); in test_set_kernel_arg_constant() local
447 (void *)outputData.data(), 0, NULL, NULL); in test_set_kernel_arg_constant()
452 if (outputData[i] != randomTestDataA[i] + randomTestDataB[i]) in test_set_kernel_arg_constant()
454 …: Data sample %d did not verify! %d does not match %d + %d (%d)\n", i, outputData[i], randomTestDa… in test_set_kernel_arg_constant()
473 std::vector<cl_int> outputData(num_elements); in test_set_kernel_arg_struct_array() local
524 (void *)outputData.data(), 0, NULL, NULL); in test_set_kernel_arg_struct_array()
529 if (outputData[i] != image_pair[i].A + image_pair[i].B) in test_set_kernel_arg_struct_array()
579 std::vector<cl_int> outputData(num_elements); in test_kernel_global_constant() local
622 (void *)outputData.data(), 0, NULL, NULL); in test_kernel_global_constant()
627 if (outputData[i] != randomTestDataA[i] + 1024) in test_kernel_global_constant()
629 …Data sample %d did not verify! %d does not match %d + 1024 (%d)\n", i, outputData[i], randomTestDa… in test_kernel_global_constant()