Searched refs:ConvPowerVR (Results 1 – 6 of 6) sorted by relevance
/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/ |
D | conv_powervr.h | 40 class ConvPowerVR : public GPUOperation { 42 ConvPowerVR() = default; 58 ConvPowerVR(ConvPowerVR&& operation); 59 ConvPowerVR& operator=(ConvPowerVR&& operation); 60 ConvPowerVR(const ConvPowerVR&) = delete; 61 ConvPowerVR& operator=(const ConvPowerVR&) = delete; 110 ConvPowerVR(const OperationDef& definition, 113 ConvPowerVR(const OperationDef& definition, 116 ConvPowerVR(const OperationDef& definition, 119 explicit ConvPowerVR(const OperationDef& definition); [all …]
|
D | conv_powervr.cc | 170 ConvPowerVR::ConvPowerVR(const OperationDef& definition, in ConvPowerVR() function in tflite::gpu::ConvPowerVR 180 ConvPowerVR::ConvPowerVR(const OperationDef& definition, in ConvPowerVR() function in tflite::gpu::ConvPowerVR 192 ConvPowerVR::ConvPowerVR(const OperationDef& definition, in ConvPowerVR() function in tflite::gpu::ConvPowerVR 202 ConvPowerVR::ConvPowerVR(const OperationDef& definition) in ConvPowerVR() function in tflite::gpu::ConvPowerVR 209 ConvPowerVR::ConvPowerVR(ConvPowerVR&& operation) in ConvPowerVR() function in tflite::gpu::ConvPowerVR 217 ConvPowerVR::ConvPowerVR(const OperationDef& definition, in ConvPowerVR() function in tflite::gpu::ConvPowerVR 229 ConvPowerVR& ConvPowerVR::operator=(ConvPowerVR&& operation) { in operator =() 241 void ConvPowerVR::GenerateCode(const GpuInfo& gpu_info) { in GenerateCode() 269 absl::Status ConvPowerVR::BindArguments(ArgumentsBinder* args) { in BindArguments() 302 int3 ConvPowerVR::GetGridSize() const { in GetGridSize() [all …]
|
D | conv_powervr_test_util.cc | 52 ConvPowerVR operation = in ConvPowerVR1x1SimpleWeightsTest() 55 src_tensor, absl::make_unique<ConvPowerVR>(std::move(operation)), in ConvPowerVR1x1SimpleWeightsTest() 89 ConvPowerVR operation = in ConvPowerVR1x1Test() 92 src_tensor, absl::make_unique<ConvPowerVR>(std::move(operation)), in ConvPowerVR1x1Test() 126 ConvPowerVR operation = in ConvPowerVRSimpleWeightsTest() 129 src_tensor, absl::make_unique<ConvPowerVR>(std::move(operation)), in ConvPowerVRSimpleWeightsTest() 163 ConvPowerVR operation = in ConvPowerVRTest() 166 src_tensor, absl::make_unique<ConvPowerVR>(std::move(operation)), in ConvPowerVRTest()
|
/external/tensorflow/tensorflow/lite/delegates/gpu/common/selectors/default/ |
D | convolution_selector.cc | 44 ConvPowerVR conv = CreateConvPowerVR(gpu_info, op_def, attr, &dst_shape); in SelectConvolutionAdreno() 45 return absl::make_unique<ConvPowerVR>(std::move(conv)); in SelectConvolutionAdreno() 53 ConvPowerVR conv = in SelectConvolutionWinogradAdreno() 55 return absl::make_unique<ConvPowerVR>(std::move(conv)); in SelectConvolutionWinogradAdreno() 63 ConvPowerVR conv = CreateConvPowerVRDynamicWeights( in SelectConvolutionDynamicWeightsAdreno() 66 return absl::make_unique<ConvPowerVR>(std::move(conv)); in SelectConvolutionDynamicWeightsAdreno() 76 ConvPowerVR conv = CreateConvPowerVR(gpu_info, op_def, attr, &dst_shape); in SelectConvolutionNVidia() 77 return absl::make_unique<ConvPowerVR>(std::move(conv)); in SelectConvolutionNVidia() 84 ConvPowerVR conv = CreateConvPowerVR(gpu_info, op_def, attr); in SelectConvolutionPowerVR() 85 return absl::make_unique<ConvPowerVR>(std::move(conv)); in SelectConvolutionPowerVR() [all …]
|
D | fully_connected_selector.cc | 32 ConvPowerVR conv = CreateConvPowerVR(gpu_info, op_def, attr, &dst_shape); in SelectFullyConnectedGeneric() 33 return absl::make_unique<ConvPowerVR>(std::move(conv)); in SelectFullyConnectedGeneric() 45 ConvPowerVR conv = CreateConvPowerVR(gpu_info, op_def, attr, &dst_shape); in SelectFullyConnectedAdreno() 46 return absl::make_unique<ConvPowerVR>(std::move(conv)); in SelectFullyConnectedAdreno() 57 ConvPowerVR conv = CreateConvPowerVR(gpu_info, op_def, attr); in SelectFullyConnectedPowerVR() 58 return absl::make_unique<ConvPowerVR>(std::move(conv)); in SelectFullyConnectedPowerVR() 74 ConvPowerVR conv = in SelectFullyConnectedMali() 76 return absl::make_unique<ConvPowerVR>(std::move(conv)); in SelectFullyConnectedMali()
|
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/kernels/ |
D | conv_powervr_test.cc | 44 TEST_F(OpenCLOperationTest, ConvPowerVR) { in TEST_F() argument
|