Home
last modified time | relevance | path

Searched refs:s_ch (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/lite/delegates/gpu/common/task/
Dweights_conversion.h52 const int s_ch = s * 4 + j; in RearrangeWeightsToOHWIOGroupI4O4() local
54 if (s_ch < weights.shape.i && d_ch < weights.shape.o) { in RearrangeWeightsToOHWIOGroupI4O4()
56 weights.shape.LinearIndex({d_ch, y, x, s_ch}); in RearrangeWeightsToOHWIOGroupI4O4()
88 const int s_ch = s * 4 + i; in RearrangeWeightsToOHWIOGroupO4I4() local
90 if (s_ch < weights.shape.i && d_ch < weights.shape.o) { in RearrangeWeightsToOHWIOGroupO4I4()
92 weights.shape.LinearIndex({d_ch, y, x, s_ch}); in RearrangeWeightsToOHWIOGroupO4I4()
125 const int s_ch = s * 4 + j; in RearrangeWeightsToODHWIOGroupI4O4() local
127 if (s_ch < weights.shape.i && d_ch < weights.shape.o) { in RearrangeWeightsToODHWIOGroupI4O4()
129 weights.shape.LinearIndex({d_ch, y, x, z, s_ch}); in RearrangeWeightsToODHWIOGroupI4O4()
162 const int s_ch = s * 4 + j; in RearrangeWeightsToI4HWIOOGroupO4() local
[all …]
/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/
Dconv_constants.h50 const int s_ch = s * 4 + j; in RearrangeWeightsForConvConstants() local
52 if (s_ch < weights.shape.i && d_ch < weights.shape.o) { in RearrangeWeightsForConvConstants()
54 weights.shape.LinearIndex({d_ch, y, x, s_ch}); in RearrangeWeightsForConvConstants()
87 const int s_ch = s * 4 + i; in RearrangeWeightsForConvConstantsDot() local
89 if (s_ch < weights.shape.i && d_ch < weights.shape.o) { in RearrangeWeightsForConvConstantsDot()
91 weights.shape.LinearIndex({d_ch, y, x, s_ch}); in RearrangeWeightsForConvConstantsDot()
Ddepthwise_conv_3x3_stride_h2.h122 const int s_ch = s * 4 + i; in RearrangeWeightsAndBiasesData() local
123 if (s_ch < weights.shape.i) { in RearrangeWeightsAndBiasesData()
124 const int f_index = weights.shape.LinearIndex({0, y, x, s_ch}); in RearrangeWeightsAndBiasesData()
Dconvolution_transposed_thin.h120 const int s_ch = s * 4 + i; in RearrangeWeightsData() local
122 if (s_ch < weights.shape.i && d_ch < weights.shape.o) { in RearrangeWeightsData()
123 const int f_index = weights.shape.LinearIndex({d_ch, y, x, s_ch}); in RearrangeWeightsData()
Ddepthwise_conv_3x3.h128 const int s_ch = s * 4 + i; in RearrangeWeightsAndBiasesData() local
129 if (s_ch < weights.shape.i) { in RearrangeWeightsAndBiasesData()
130 const int f_index = weights.shape.LinearIndex({0, y, x, s_ch}); in RearrangeWeightsAndBiasesData()
/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/special/
Ddepthwise_conv_plus_1x1_conv.cc77 const int s_ch = s * 4 + j; in UploadWeights() local
79 if (s_ch < conv_attr.weights.shape.i && in UploadWeights()
82 conv_attr.weights.shape.LinearIndex({d_ch, 0, 0, s_ch}); in UploadWeights()