Home
last modified time | relevance | path

Searched refs:input_cols_raw (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/mkl/
Dmkl_conv_ops.h141 int64 input_cols_raw = GetTensorDim(input_shape, data_format_, 'W'); in GetInputSizeInMklOrder() local
142 CHECK_BOUNDS(input_cols_raw, "Input cols too large"); in GetInputSizeInMklOrder()
143 int input_cols = static_cast<int>(input_cols_raw); in GetInputSizeInMklOrder()
165 int64 input_cols_raw = GetTensorDim(input_shape, data_format_, '2'); in GetInputSizeInMklOrder() local
166 CHECK_BOUNDS(input_cols_raw, "Input cols too large"); in GetInputSizeInMklOrder()
167 int input_cols = static_cast<int>(input_cols_raw); in GetInputSizeInMklOrder()
/external/tensorflow/tensorflow/core/kernels/
Dconv_ops_using_gemm.cc502 const int64 input_cols_raw = GetTensorDim(input, data_format_, 'W'); in Compute() local
505 FastBoundsCheck(input_cols_raw, std::numeric_limits<int>::max()), in Compute()
507 const int input_cols = static_cast<int>(input_cols_raw); in Compute()
Ddepthwise_conv_op.cc363 const int64 input_cols_raw = GetTensorDim(input, data_format_, 'W'); in Compute() local
366 FastBoundsCheck(input_cols_raw, std::numeric_limits<int32>::max()), in Compute()
368 const int32 input_cols = static_cast<int32>(input_cols_raw); in Compute()
Dconv_ops.cc446 const int64 input_cols_raw = GetTensorDim(input, params.data_format, 'W'); in ComputeConv2DDimension() local
447 TF_REQUIRES(FastBoundsCheck(input_cols_raw, std::numeric_limits<int>::max()), in ComputeConv2DDimension()
449 const int input_cols = static_cast<int>(input_cols_raw); in ComputeConv2DDimension()
Ddepthwise_conv_grad_op.cc81 const int64 input_cols_raw = GetTensorDim(input_shape, data_format_, 'W'); \
84 FastBoundsCheck(input_cols_raw, std::numeric_limits<int32>::max()), \
86 const int32 input_cols = static_cast<int32>(input_cols_raw); \