Searched refs:program_source (Results 1 – 7 of 7) sorted by relevance
/aosp_15_r20/external/ComputeLibrary/src/gpu/cl/ |
H A D | ClKernelLibrary.cpp | 1028 std::string program_source = program_source_it->second; in program() local 1034 program_source = std::move(decompressed_program_source); in program() 1037 return ClProgramInfo{ program_source, false }; in program() 1042 std::string program_source{}; in program() 1047 program_source = read_file(binary_name, true); in program() 1052 program_source = read_file(source_name, false); in program() 1059 return ClProgramInfo{ program_source, is_binary }; in program()
|
/aosp_15_r20/external/ComputeLibrary/src/core/CL/ |
H A D | CLCompileContext.cpp | 159 …const std::string &kernel_name, const std::string &program_name, const std::string &program_source, in create_kernel() argument 174 Program program = load_program(program_name, program_source, is_binary); in create_kernel() 187 …xt::load_program(const std::string &program_name, const std::string &program_source, bool is_binar… in load_program() argument 200 program = Program(_context, program_name, program_source); in load_program() 204 …ce.cl_device(), program_name, std::vector<unsigned char>(program_source.begin(), program_source.en… in load_program() 208 program = Program(_context, program_name, program_source); in load_program()
|
/aosp_15_r20/external/OpenCL-CTS/test_conformance/basic/ |
H A D | test_local.cpp | 244 char *program_source = (char*)malloc(sizeof(char)*2048); in test_local_kernel_def() local 247 memset(program_source, 0, 2048); in test_local_kernel_def() 302 sprintf(program_source, barrier_with_localmem_kernel_code[1], (int)(wgsize * sizeof(cl_int))); in test_local_kernel_def() 304 …err = create_single_kernel_helper(context, &program, &kernel, 1, (const char**)&program_source, "c… in test_local_kernel_def() 305 free(program_source); in test_local_kernel_def()
|
H A D | test_vector_creation.cpp | 259 std::vector<char> program_source(sizeof(char) * 1024 * 1024 * 4); in test_vector_creation() local 356 program_source.data(), &number_of_results, in test_vector_creation() 368 char *src = program_source.data(); in test_vector_creation() 460 char *start_loc = strstr(program_source.data(), search); in test_vector_creation() 464 search, program_source.data()); in test_vector_creation()
|
H A D | test_vec_type_hint.cpp | 47 std::vector<char> program_source(4096); in test_vec_type_hint() local 94 sprintf(program_source.data(), sample_kernel, extension, in test_vec_type_hint() 98 const char *src = &program_source.front(); in test_vec_type_hint()
|
H A D | test_fpmath.cpp | 193 std::string program_source = in test_fpmath() local 260 const char *ptr = program_source.c_str(); in test_fpmath()
|
/aosp_15_r20/external/ComputeLibrary/arm_compute/core/CL/ |
H A D | CLCompileContext.h | 253 …const std::string &kernel_name, const std::string &program_name, const std::string &program_source, 326 …const Program &load_program(const std::string &program_name, const std::string &program_source, bo…
|