Home
last modified time | relevance | path

Searched refs:ConvolutionTransposed3x3Thin (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/
Dconvolution_transposed_3x3_thin.h37 class ConvolutionTransposed3x3Thin : public GPUOperation {
39 ConvolutionTransposed3x3Thin() = default;
43 ConvolutionTransposed3x3Thin(ConvolutionTransposed3x3Thin&& operation) =
45 ConvolutionTransposed3x3Thin& operator=(
46 ConvolutionTransposed3x3Thin&& operation) = default;
47 ConvolutionTransposed3x3Thin(const ConvolutionTransposed3x3Thin&) = delete;
48 ConvolutionTransposed3x3Thin& operator=(const ConvolutionTransposed3x3Thin&) =
59 ConvolutionTransposed3x3Thin(const GpuInfo& gpu_info,
63 friend ConvolutionTransposed3x3Thin CreateConvolutionTransposed3x3Thin(
66 friend ConvolutionTransposed3x3Thin
[all …]
Dconvolution_transposed_3x3_thin.cc27 ConvolutionTransposed3x3Thin::ConvolutionTransposed3x3Thin( in ConvolutionTransposed3x3Thin() function in tflite::gpu::ConvolutionTransposed3x3Thin
41 std::string ConvolutionTransposed3x3Thin::GenerateConvolutionTransposedCode( in GenerateConvolutionTransposedCode()
192 int3 ConvolutionTransposed3x3Thin::GetGridSize() const { in GetGridSize()
199 std::vector<int> ConvolutionTransposed3x3Thin::GetSpatialWeightsRemap() const { in GetSpatialWeightsRemap()
203 void ConvolutionTransposed3x3Thin::UploadWeights( in UploadWeights()
235 ConvolutionTransposed3x3Thin CreateConvolutionTransposed3x3Thin( in CreateConvolutionTransposed3x3Thin()
238 ConvolutionTransposed3x3Thin result(gpu_info, definition, attr); in CreateConvolutionTransposed3x3Thin()
250 ConvolutionTransposed3x3Thin CreateConvolutionTransposed3x3ThinDynamicWeights( in CreateConvolutionTransposed3x3ThinDynamicWeights()
261 ConvolutionTransposed3x3Thin result(gpu_info, new_def, attr); in CreateConvolutionTransposed3x3ThinDynamicWeights()
/external/tensorflow/tensorflow/lite/delegates/gpu/common/selectors/default/
Dconvolution_transposed_selector.cc36 ConvolutionTransposed3x3Thin conv = in SelectConvolutionTransposedAdreno()
38 return absl::make_unique<ConvolutionTransposed3x3Thin>(std::move(conv)); in SelectConvolutionTransposedAdreno()
54 ConvolutionTransposed3x3Thin conv = in SelectConvolutionTransposedPowerVR()
56 return absl::make_unique<ConvolutionTransposed3x3Thin>(std::move(conv)); in SelectConvolutionTransposedPowerVR()
101 ConvolutionTransposed3x3Thin conv = in SelectConvolutionTransposedWithDynamicWeights()
105 return absl::make_unique<ConvolutionTransposed3x3Thin>(std::move(conv)); in SelectConvolutionTransposedWithDynamicWeights()
120 ConvolutionTransposed3x3Thin conv = in SelectConvolutionTransposedWithDynamicWeights()
124 return absl::make_unique<ConvolutionTransposed3x3Thin>(std::move(conv)); in SelectConvolutionTransposedWithDynamicWeights()
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/kernels/
Dconvolution_transposed_3x3_thin_test.cc57 ConvolutionTransposed3x3Thin operation = in TEST_F()
62 absl::make_unique<ConvolutionTransposed3x3Thin>(std::move(operation)), in TEST_F()
72 TEST_F(OpenCLOperationTest, ConvolutionTransposed3x3Thin) { in TEST_F() argument
95 ConvolutionTransposed3x3Thin operation = in TEST_F()
100 absl::make_unique<ConvolutionTransposed3x3Thin>(std::move(operation)), in TEST_F()