Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/keras/utils/
Dconv_utils.py509 out_reshaped = op(inp_reshaped)
511 out_inner_shape = out_reshaped.shape[-inner_rank:]
513 out_inner_shape = array_ops.shape(out_reshaped)[-inner_rank:]
516 out_reshaped, array_ops.concat((batch_shape, out_inner_shape), axis=-1))
/external/tensorflow/tensorflow/core/kernels/linalg/
Dbanded_triangular_solve_op.cc258 Tensor out_reshaped; in Compute() local
260 out_reshaped.CopyFrom(*out, TensorShape({batch_size, d1, d3})), in Compute()
265 &out_reshaped); in Compute()
Dmatrix_triangular_solve_op_impl.h204 Tensor out_reshaped;
206 out_reshaped.CopyFrom(*out, TensorShape({batch_size, d0, d3})),
211 &out_reshaped);
/external/tensorflow/tensorflow/core/kernels/
Dmatmul_op_impl.h719 Tensor out_reshaped;
721 out_reshaped.CopyFrom(*out, TensorShape({batch_size, d0, d3})),
733 OP_REQUIRES_OK(ctx, ctx->allocate_temp(DT_FLOAT, out_reshaped.shape(),
748 out_reshaped.flat<bfloat16>().data(), out->NumElements());
752 trans_y_, bcast, &out_reshaped);
/external/tensorflow/tensorflow/python/ops/
Dnn_ops.py313 out_reshaped = op(inp_reshaped)
315 out_inner_shape = out_reshaped.shape[-inner_rank:]
317 out_inner_shape = array_ops.shape(out_reshaped)[-inner_rank:]
320 out_reshaped, array_ops.concat((batch_shape, out_inner_shape), axis=-1))