Home
last modified time | relevance | path

Searched refs:export_weights_to_cl_image (Results 1 – 15 of 15) sorted by relevance

/external/ComputeLibrary/src/runtime/heuristics/direct_conv/
DClDirectConvDefaultConfigValhall.cpp82 const bool export_weights_to_cl_image = export_to_cl_image(wei); in configure_G78_f32() local
88 desc.export_weights_to_cl_image = export_weights_to_cl_image; in configure_G78_f32()
143 const bool export_weights_to_cl_image = export_to_cl_image(wei); in configure_G78_f16() local
150 desc.export_weights_to_cl_image = export_weights_to_cl_image; in configure_G78_f16()
264 desc.export_weights_to_cl_image = false; in configure_G78_u8()
279 const bool export_weights_to_cl_image = export_to_cl_image(wei); in configure_G57_f32() local
284 desc.export_weights_to_cl_image = export_weights_to_cl_image; in configure_G57_f32()
339 const bool export_weights_to_cl_image = export_to_cl_image(wei); in configure_G57_f16() local
345 desc.export_weights_to_cl_image = export_weights_to_cl_image; in configure_G57_f16()
DClDirectConvDefaultConfigBifrost.cpp90 desc.export_weights_to_cl_image = false; in configure_G71_f32()
114 desc.export_weights_to_cl_image = false; in configure_G71_f16()
138 desc.export_weights_to_cl_image = false; in configure_G71_u8()
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()
/external/ComputeLibrary/src/runtime/heuristics/dwc_native/
DClDWCNativeDefaultConfigValhall.cpp85 desc.export_weights_to_cl_image = use_cl_image_for_weights(wei, depth_multiplier); in configure_G78_f32()
108 …OR_ON((adjust_vec_size(desc.n0, kernel_c) != desc.n0) && (desc.export_weights_to_cl_image == true)… in configure_G78_f32()
150 desc.export_weights_to_cl_image = use_cl_image_for_weights(wei, depth_multiplier); in configure_G78_f16()
154 if(desc.export_weights_to_cl_image == false) in configure_G78_f16()
180 …OR_ON((adjust_vec_size(desc.n0, kernel_c) != desc.n0) && (desc.export_weights_to_cl_image == true)… in configure_G78_f16()
222 desc.export_weights_to_cl_image = false; in configure_G78_u8()
251 desc.export_weights_to_cl_image = use_cl_image_for_weights(wei, depth_multiplier); in configure_G77_f16()
255 if(desc.export_weights_to_cl_image == false) in configure_G77_f16()
281 …OR_ON((adjust_vec_size(desc.n0, kernel_c) != desc.n0) && (desc.export_weights_to_cl_image == true)… in configure_G77_f16()
DClDWCNativeDefaultConfigBifrost.cpp55 desc.export_weights_to_cl_image = false; in configure_f32()
59 desc.export_weights_to_cl_image = use_cl_image_for_weights(wei, depth_multiplier); in configure_f32()
83 …OR_ON((adjust_vec_size(desc.n0, kernel_c) != desc.n0) && (desc.export_weights_to_cl_image == true)… in configure_f32()
128 desc.export_weights_to_cl_image = false; in configure_f16()
132 desc.export_weights_to_cl_image = use_cl_image_for_weights(wei, depth_multiplier); in configure_f16()
137 if(desc.export_weights_to_cl_image == false) in configure_f16()
163 …OR_ON((adjust_vec_size(desc.n0, kernel_c) != desc.n0) && (desc.export_weights_to_cl_image == true)… in configure_f16()
264 desc.export_weights_to_cl_image = false; in configure_G7x_u8()
/external/ComputeLibrary/src/runtime/heuristics/indirect_conv/
DClIndirectConvDefaultConfigValhall.cpp67 const bool export_weights_to_cl_image = export_to_cl_image(wei); in configure_G77_f32() local
73 desc.export_weights_to_cl_image = export_weights_to_cl_image; in configure_G77_f32()
111 const bool export_weights_to_cl_image = export_to_cl_image(wei); in configure_G77_f16() local
117 desc.export_weights_to_cl_image = export_weights_to_cl_image; in configure_G77_f16()
/external/ComputeLibrary/src/dynamic_fusion/sketch/gpu/components/cl/
DClComponentDepthwiseConv2d.cpp51 Settings &Settings::export_weights_to_cl_image(bool cl_image) in export_weights_to_cl_image() function in arm_compute::experimental::dynamic_fusion::Settings
57 bool Settings::export_weights_to_cl_image() const in export_weights_to_cl_image() function in arm_compute::experimental::dynamic_fusion::Settings
177 …ARM_COMPUTE_RETURN_ERROR_ON_MSG((settings.export_weights_to_cl_image() == true) && (export_to_cl_i… in validate()
178 …ARM_COMPUTE_RETURN_ERROR_ON((settings.export_weights_to_cl_image() == true) && ((settings.n0() % 4… in validate()
DClComponentDepthwiseConv2d.h55 ClComponentDepthwiseConv2dSettings &export_weights_to_cl_image(bool cl_image);
57 bool export_weights_to_cl_image() const;
/external/ComputeLibrary/src/dynamic_fusion/sketch/gpu/operators/
DGpuDepthwiseConv2d.cpp120 .export_weights_to_cl_image(dwc_info.export_weights_to_cl_image); in is_supported_op_helper()
227 .export_weights_to_cl_image(dwc_info.export_weights_to_cl_image); in create_op()
234 if(settings.export_weights_to_cl_image()) in create_op()
/external/ComputeLibrary/arm_compute/core/
DKernelDescriptors.h110 bool export_weights_to_cl_image{ false }; /**< Export the weights to cl_image */
119 bool export_weights_to_cl_image{ false }; /**< Flag to export the weights to cl_image */
/external/ComputeLibrary/tests/validation/fixtures/
DIndirectConv2dAddressPrecalculationFixture.h61 desc.export_weights_to_cl_image = false; // Not used by the kernel in setup()
DDepthwiseConvolutionLayerFixture.h511 dwc_info.export_weights_to_cl_image = _export_to_cl_image; in configure_target()
/external/ComputeLibrary/src/core/CL/kernels/
DCLDepthwiseConvolutionLayerNativeKernel.cpp63 …ARM_COMPUTE_RETURN_ERROR_ON_MSG((dwc_info.export_weights_to_cl_image == true) && (export_to_cl_ima… in validate_arguments()
64 …ARM_COMPUTE_RETURN_ERROR_ON((dwc_info.export_weights_to_cl_image == true) && ((dwc_info.n0 % 4) !=… in validate_arguments()
205 _export_weights_to_cl_image = dwc_info.export_weights_to_cl_image; in configure()
/external/ComputeLibrary/src/gpu/cl/kernels/
DClIndirectConv2dKernel.cpp76 if(desc.export_weights_to_cl_image) in validate_arguments()
162 _export_to_cl_image = desc.export_weights_to_cl_image; in configure()
DClDirectConv2dKernel.cpp98 if(desc.export_weights_to_cl_image) in validate_arguments()
217 _export_weights_to_cl_image = desc.export_weights_to_cl_image; in configure()
/external/ComputeLibrary/src/dynamic_fusion/sketch/gpu/template_writer/cl/
DClTemplateDepthwiseConv2d.cpp213 const GpuKernelArgumentInfo::Type weight_type = _settings.export_weights_to_cl_image() ? in declare_variables()