Home
last modified time | relevance | path

Searched refs:TFShapeToMklDnnDims (Results 1 – 13 of 13) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/mkl/
Dmkl_batch_matmul_op.cc183 auto lhs_dims = TFShapeToMklDnnDims(lhs_shape); in CreateMatMulParams()
184 auto rhs_dims = TFShapeToMklDnnDims(rhs_shape); in CreateMatMulParams()
185 auto out_dims = TFShapeToMklDnnDims(out_shape); in CreateMatMulParams()
Dmkl_transpose_op.cc132 memory::dims in_dims = TFShapeToMklDnnDims(in_tensor.shape()); in MKLTransposeND()
133 memory::dims out_dims = TFShapeToMklDnnDims(out_tensor->shape()); in MKLTransposeND()
Dmkl_dequantize_op.cc70 : TFShapeToMklDnnDims(src_tensor.shape()); in Compute()
Dmkl_concat_op.cc583 dst_dims = TFShapeToMklDnnDims(mkl_input_shapes[0].GetTfShape()); in Compute()
588 dst_dims = TFShapeToMklDnnDims(input_tensors[0].shape()); in Compute()
638 memory::dims src_dims = TFShapeToMklDnnDims(s_shape); in Compute()
880 auto src_dims = TFShapeToMklDnnDims(input_shapes[k].GetTfShape()); in FindMklCommonFormat()
Dmkl_qmatmul_op.cc188 src_dims = TFShapeToMklDnnDims(src_tf_shape); in Compute()
189 weight_dims = TFShapeToMklDnnDims(weight_tf_shape); in Compute()
Dmkl_aggregate_ops.cc206 auto dims = TFShapeToMklDnnDims(src_tensor.shape()); in Compute()
Dmkl_softmax_op.cc221 src_dims = TFShapeToMklDnnDims(src_tf_shape); in Compute()
Dmkl_relu_op.cc470 src_dims = TFShapeToMklDnnDims(src_tensor.shape()); in Compute()
509 TFShapeToMklDnnDims(src_tensor.shape()), in Compute()
626 src_dims = TFShapeToMklDnnDims(src_tensor.shape()); in Compute()
Dmkl_quantize_op.cc338 : TFShapeToMklDnnDims(src_tensor.shape()); in Compute()
Dmkl_slice_op.cc424 input_dims = TFShapeToMklDnnDims(input_tensor.shape()); in ComputeMklSlice()
Dmkl_conv_ops.h460 *output_dims_tf_order = TFShapeToMklDnnDims(out_shape);
Dmkl_conv_ops.cc672 TFShapeToMklDnnDims(filter_tf_shape), in Compute()
/external/tensorflow/tensorflow/core/util/
Dmkl_util.h1070 inline memory::dims TFShapeToMklDnnDims(const TensorShape& shape) { in TFShapeToMklDnnDims() function