Searched refs:input_cols_raw (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/core/kernels/mkl/ |
D | mkl_conv_ops.h | 141 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/ |
D | conv_ops_using_gemm.cc | 502 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()
|
D | depthwise_conv_op.cc | 363 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()
|
D | conv_ops.cc | 446 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()
|
D | depthwise_conv_grad_op.cc | 81 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); \
|