Home
last modified time | relevance | path

Searched refs:pad_before (Results 1 – 16 of 16) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dconv_grad_size_util.cc41 dim.pad_before = dim.pad_after = 0; in GetWindowedOutputSize()
50 dim.pad_before = padding_needed / 2; in GetWindowedOutputSize()
51 dim.pad_after = padding_needed - dim.pad_before; in GetWindowedOutputSize()
85 dim.pad_before = effective_filter_size - 1 - output_dim.pad_before; in ConvGradExtractAndVerifyDimension()
86 dim.pad_after = padded_out_size - dim.output_size - dim.pad_before; in ConvGradExtractAndVerifyDimension()
90 << ", pad_before = " << dim.pad_before in ConvGradExtractAndVerifyDimension()
Dconv_grad_size_util.h31 int64 pad_before; member
Dpooling.cc262 padding->set_edge_padding_low(conv_backprop_spatial_dim.pad_before); in AvgPoolGrad()
/external/tensorflow/tensorflow/core/kernels/
Dconv_grad_ops.cc84 dim->pad_before = effective_filter_size - 1 - padding_before; in ConvBackpropExtractAndVerifyDimension()
86 padded_out_size - dim->expanded_output_size - dim->pad_before; in ConvBackpropExtractAndVerifyDimension()
90 << ", pad_before = " << dim->pad_before in ConvBackpropExtractAndVerifyDimension()
Dconv_grad_ops.h230 int64 pad_before, pad_after;
/external/u-boot/tools/binman/
Dentry.py62 self.pad_before = 0
123 self.pad_before = fdt_util.GetInt(self._node, 'pad-before', 0)
174 needed = self.pad_before + self.contents_size + self.pad_after
Dftest.py486 self.assertEqual(3, entry.pad_before)
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dconv_op_helpers.cc374 padding[i] = {dims.spatial_dims[i].pad_before, in MakeXlaBackpropInputConvOp()
515 const int64 pad_before = attrs.padding == Padding::EXPLICIT in MakeXlaBackpropFilterConvOp() local
520 padding[i] = {pad_before, pad_total - pad_before}; in MakeXlaBackpropFilterConvOp()
/external/tensorflow/tensorflow/contrib/losses/python/metric_learning/
Dmetric_loss_ops.py710 pad_before = array_ops.zeros([iteration])
715 [pad_before, [1.0 - nmi_score_i], pad_after], 0)
803 pad_before = array_ops.zeros([iteration])
806 [pad_before, [1.0 - metric_score], pad_after], 0)
/external/libaom/libaom/aom/src/
Daom_encoder.c310 unsigned int pad_before, in aom_codec_set_cx_data_buf() argument
316 ctx->priv->enc.cx_data_pad_before = pad_before; in aom_codec_set_cx_data_buf()
/external/libvpx/libvpx/vpx/src/
Dvpx_encoder.c292 unsigned int pad_before, in vpx_codec_set_cx_data_buf() argument
298 ctx->priv->enc.cx_data_pad_before = pad_before; in vpx_codec_set_cx_data_buf()
/external/libaom/libaom/aom/
Daom_encoder.h942 unsigned int pad_before,
/external/libvpx/libvpx/vpx/
Dvpx_encoder.h921 unsigned int pad_before,
/external/tensorflow/tensorflow/cc/gradients/
Darray_grad.cc298 auto pad_before = Slice(scope, a, {0, 0}, size); in PadGrad() local
300 auto begin = Reshape(scope, pad_before, {-1}); in PadGrad()
/external/tensorflow/tensorflow/compiler/tests/
Drandomized_tests.cc2971 int64 pad_before; in TEST_F() local
2974 pad_before = distribution(generator()); in TEST_F()
2976 } while (pad_before + pad_after > input_dims[1 + i]); in TEST_F()
2977 input_dims[1 + i] -= pad_before + pad_after; in TEST_F()
2978 padding_vals.push_back(pad_before); in TEST_F()
3013 int64 pad_before; in TEST_F() local
3016 pad_before = distribution(generator()); in TEST_F()
3018 } while (pad_before + pad_after > input_dims[1 + i]); in TEST_F()
3019 input_dims[1 + i] -= pad_before + pad_after; in TEST_F()
3020 padding_vals.push_back(pad_before); in TEST_F()
/external/tensorflow/tensorflow/python/ops/
Darray_grad.py609 pad_before = array_ops.slice(a, [0, 0],
612 begin = array_ops.reshape(pad_before, [-1])