/aosp_15_r20/external/ComputeLibrary/tests/validation/fixtures/ |
H A D | GEMMFixture.h | 554 if(!rhs_info.export_to_cl_image) in compute_target() 709 if(!rhs_info.export_to_cl_image) in compute_target() 791 …bool interleave_rhs, bool export_to_cl_image, DataType data_type, float alpha, float beta, bool br… in setup() argument 806 rhs_info.export_to_cl_image = export_to_cl_image; in setup() 869 validate_result = validate_result || !rhs_info.export_to_cl_image; in compute_target() 884 if(!rhs_info.export_to_cl_image) in compute_target() 978 …bool interleave_rhs, bool export_to_cl_image, DataType data_type, float alpha, float beta, bool br… in setup() argument 994 rhs_info.export_to_cl_image = export_to_cl_image; in setup() 1078 validate_result = validate_result || !rhs_info.export_to_cl_image; in compute_target() 1097 if(!rhs_info.export_to_cl_image) in compute_target() [all …]
|
H A D | DepthwiseConvolutionLayerFixture.h | 447 …aLayout data_layout, const ActivationLayerInfo &act_info, unsigned int n0, bool export_to_cl_image) in setup() argument 455 _export_to_cl_image = export_to_cl_image; in setup()
|
/aosp_15_r20/external/ComputeLibrary/src/runtime/heuristics/direct_conv/ |
H A D | ClDirectConvDefaultConfigValhall.cpp | 82 const bool export_weights_to_cl_image = export_to_cl_image(wei); in configure_G78_f32() 143 const bool export_weights_to_cl_image = export_to_cl_image(wei); in configure_G78_f16() 279 const bool export_weights_to_cl_image = export_to_cl_image(wei); in configure_G57_f32() 339 const bool export_weights_to_cl_image = export_to_cl_image(wei); in configure_G57_f16()
|
H A D | ClDirectConvDefaultConfigBifrost.cpp | 162 desc.export_weights_to_cl_image = export_to_cl_image(wei); in configure_default_f32() 186 desc.export_weights_to_cl_image = export_to_cl_image(wei); in configure_default_f16()
|
/aosp_15_r20/external/ComputeLibrary/src/gpu/cl/kernels/gemm/ |
H A D | ClGemmHelpers.cpp | 42 …s_interleave, bool rhs_interleave, bool lhs_transpose, bool rhs_transpose, bool export_to_cl_image) in configure_lhs_rhs_info() argument 49 const GEMMRHSMatrixInfo rhs_info(n0, k0, h0, rhs_transpose, rhs_interleave, export_to_cl_image); in configure_lhs_rhs_info() 94 if(rhs_info.export_to_cl_image) in validate_image2d_support_on_rhs()
|
H A D | ClGemmHelpers.h | 56 …ave, bool rhs_interleave, bool lhs_transpose, bool rhs_transpose, bool export_to_cl_image = false);
|
/aosp_15_r20/external/ComputeLibrary/src/dynamic_fusion/sketch/gpu/components/cl/ |
H A D | ClComponentDirectConv2d.h | 51 ClComponentDirectConv2dSettings &export_to_cl_image(bool cl_image); 53 bool export_to_cl_image() const;
|
H A D | ClComponentDirectConv2d.cpp | 38 ClComponentDirectConv2dSettings &ClComponentDirectConv2dSettings::export_to_cl_image(bool cl_image) in export_to_cl_image() function in arm_compute::experimental::dynamic_fusion::ClComponentDirectConv2dSettings 44 bool ClComponentDirectConv2dSettings::export_to_cl_image() const in export_to_cl_image() function in arm_compute::experimental::dynamic_fusion::ClComponentDirectConv2dSettings
|
H A D | ClComponentDepthwiseConv2d.cpp | 177 …N_ERROR_ON_MSG((settings.export_weights_to_cl_image() == true) && (export_to_cl_image(wei) == fals… in validate()
|
/aosp_15_r20/external/ComputeLibrary/tests/validation/CL/ |
H A D | GEMMMatrixMultiplyReshapedOnlyRHS.cpp | 270 …bool i_value_rhs, bool t_value_rhs, bool export_to_cl_image, bool broadcast_bias, bool input_as_3d… in validate_configuration() argument 287 rhs_info.export_to_cl_image = export_to_cl_image; in validate_configuration() 359 …value, k0_value, broadcast_bias, input_as_3d, depth_output_gemm3d, export_to_cl_image, dt_input0, … 364 if(!image2d_from_buffer_supported(CLKernelLibrary::get().get_device()) && export_to_cl_image) 369 …7, 51, 23, b_value, m0_value, n0_value, k0_value, 1, false, false, export_to_cl_image, broadcast_b…
|
H A D | GEMMReshapeRHSMatrix.cpp | 148 …rhs_info.export_to_cl_image = image2d_from_buffer_supported(CLKernelLibrary::get().get_device()) &… 150 if(rhs_info.export_to_cl_image)
|
/aosp_15_r20/external/ComputeLibrary/src/dynamic_fusion/sketch/gpu/operators/ |
H A D | GpuConv2d.cpp | 154 settings.export_to_cl_image( in is_supported_op_helper() 269 settings.export_to_cl_image( in create_op() 276 if(settings.export_to_cl_image()) in create_op()
|
/aosp_15_r20/external/ComputeLibrary/src/runtime/heuristics/indirect_conv/ |
H A D | ClIndirectConvDefaultConfigValhall.cpp | 67 const bool export_weights_to_cl_image = export_to_cl_image(wei); in configure_G77_f32() 111 const bool export_weights_to_cl_image = export_to_cl_image(wei); in configure_G77_f16()
|
/aosp_15_r20/external/ComputeLibrary/src/gpu/cl/kernels/ |
H A D | ClGemmReshapeRhsMatrixKernel.cpp | 64 if(rhs_info.export_to_cl_image) in validate_arguments() 96 if(rhs_info.export_to_cl_image) in validate_and_configure_window()
|
H A D | ClGemmMatrixMultiplyReshapedKernel.cpp | 203 _export_to_cl_image = rhs_info.export_to_cl_image; in configure() 251 build_opts.add_option_if(rhs_info.export_to_cl_image, "-DOPENCL_IMAGE_SUPPORT"); in configure() 277 kernel_name += rhs_info.export_to_cl_image ? "_texture" : ""; in configure()
|
H A D | ClGemmMatrixMultiplyReshapedOnlyRhsKernel.cpp | 202 _export_to_cl_image = rhs_info.export_to_cl_image; in configure() 256 build_opts.add_option_if(rhs_info.export_to_cl_image, "-DOPENCL_IMAGE_SUPPORT"); in configure() 285 kernel_name += rhs_info.export_to_cl_image ? "_texture" : ""; in configure()
|
H A D | ClGemmMatrixMultiplyReshapedOnlyRhsMMULKernel.cpp | 220 _export_to_cl_image = rhs_info.export_to_cl_image; in configure() 256 kernel_name += rhs_info.export_to_cl_image ? "_texture" : ""; in configure()
|
H A D | ClIndirectConv2dKernel.cpp | 80 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!export_to_cl_image(weights), in validate_arguments()
|
/aosp_15_r20/external/ComputeLibrary/examples/gemm_tuner/ |
H A D | cl_gemm_reshaped_rhs_only.cpp | 217 rhs_info.export_to_cl_image = configs.export_to_cl_image_rhs; in do_setup() 231 if(rhs_info.export_to_cl_image) in do_setup()
|
H A D | cl_gemmlowp_reshaped.cpp | 241 rhs_info.export_to_cl_image = false; // CL image not supported for quantized cases yet in do_setup() 248 if(rhs_info.export_to_cl_image) in do_setup()
|
H A D | cl_gemm_reshaped.cpp | 248 rhs_info.export_to_cl_image = configs.export_to_cl_image_rhs; in do_setup() 265 if(rhs_info.export_to_cl_image) in do_setup()
|
H A D | cl_gemmlowp_reshaped_rhs_only_fused_output_stage_fixedpoint.cpp | 221 rhs_info.export_to_cl_image = false; // CL image not supported for quantized cases yet in do_setup() 225 if(rhs_info.export_to_cl_image) in do_setup()
|
/aosp_15_r20/external/ComputeLibrary/src/runtime/heuristics/dwc_native/ |
H A D | ClDWCNativeHeuristicsHelpers.cpp | 35 if(!export_to_cl_image(weights)) in use_cl_image_for_weights()
|
/aosp_15_r20/external/ComputeLibrary/arm_compute/core/CL/ |
H A D | CLHelpers.h | 251 bool export_to_cl_image(const ITensorInfo *tensor);
|
/aosp_15_r20/external/ComputeLibrary/src/dynamic_fusion/sketch/gpu/template_writer/cl/ |
H A D | ClTemplateDirectConv2d.cpp | 234 …const GpuKernelArgumentInfo::Type weight_type = _settings.export_to_cl_image() ? GpuKernelArgument… in declare_variables()
|