Home
last modified time | relevance | path

Searched refs:reshape_dim (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/python/data/benchmarks/
Dfrom_tensor_slices_benchmark.py83 reshape_dim = [100, 100]
86 num_elements = num_epochs * reshape_dim[0]
92 input_data.reshape(*reshape_dim)).repeat(num_epochs))
/external/tensorflow/tensorflow/core/kernels/
Dtile_ops_impl.h63 const Eigen::DSizes<Eigen::DenseIndex, NDIM>& reshape_dim) const {
64 out.device(d) = in.sum(reduce_dim).reshape(reshape_dim);
Dtile_ops.cc76 const Eigen::DSizes<Eigen::DenseIndex, NDIM>& reshape_dim) const;
493 Eigen::DSizes<Eigen::DenseIndex, NDIM> reshape_dim; in HandleReduce() local
500 reshape_dim[i] = result->dim_size(i); in HandleReduce()
505 context->input(0).tensor<T, NDIM>(), reduce_dim, reshape_dim); in HandleReduce()
/external/tensorflow/tensorflow/core/kernels/linalg/
Deinsum_op_impl.h387 const int64 reshape_dim = MathUtil::IPow(dim, count); in StrideOrInflate() local
388 reshape.push_back(reshape_dim); in StrideOrInflate()
393 (dim > 1 && count > 1) ? (reshape_dim - 1) / (dim - 1) : 1; in StrideOrInflate()