Searched defs:tensor_out (Results 1 - 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
H A Dcudnn_pooling_gpu.cc124 const Tensor* tensor_in, const Tensor* tensor_out, Tensor* input_backprop) {
126 (tensor_in && tensor_out))
127 << "For MaxPoolGrad, both tensor_in and tensor_out needs to be "
146 if (data_format == FORMAT_NHWC || tensor_out == nullptr) {
153 transformed_output = *tensor_out;
179 if (tensor_out != nullptr) {
181 tensor_out->tensor<T, 5>(),
117 Compute( OpKernelContext* context, perftools::gputools::dnn::PoolingMode pooling_mode, const std::array<int64, 3>& window, const std::array<int64, 3>& stride, const std::array<int64, 3>& padding, const std::array<int64, 3>& output_size, TensorFormat data_format, const Tensor& out_backprop, const TensorShape& tensor_in_shape, const Tensor* tensor_in, const Tensor* tensor_out, Tensor* input_backprop) argument
H A Dmkl_input_conversion_op.cc190 Tensor* tensor_out; variable
202 AllocateOutputSetMklShape(context, tf_tensor_index, &tensor_out,
212 const_cast<T*>(tensor_out->flat<T>().data()));
315 Tensor* tensor_out; variable
327 AllocateOutputSetMklShape(context, 0, &tensor_out,
340 tensor_out, &net),
423 Tensor* tensor_out; variable
435 AllocateOutputSetMklShape(context, tf_tensor_index, &tensor_out,
449 tensor_out, &net),
H A Dfractional_max_pool_op.cc231 const Tensor& tensor_out = context->input(1); variable
244 output_size[i] = tensor_out.dim_size(i);
252 {1}, DataTypeToEnum<T>::v(), tensor_out.shape(),
256 tensor_out.shape(),
258 // Find arg_max for each tensor_out
325 // Check tensor_out_dup is the same as tensor_out.
327 tensor_out.flat<T>().data(), output_size[3],
H A Dpooling_ops_common.cc147 Tensor* tensor_out = nullptr; local
149 context->allocate_output(0, tensor_out_shape, &tensor_out));
183 transformed_output = *tensor_out;
233 tensor_out->tensor<T, 4>());
243 const Tensor* tensor_out, const Tensor& out_backprop,
246 (tensor_in && tensor_out))
247 << "For MaxPoolGrad, both tensor_in and tensor_out needs to be "
278 if (data_format == FORMAT_NHWC || !tensor_out) {
285 transformed_output = *tensor_out;
316 if (tensor_out) {
238 Compute( OpKernelContext* context, perftools::gputools::dnn::PoolingMode pooling_mode, const std::vector<int32>& size, const std::vector<int32>& stride, Padding padding, TensorFormat data_format, const Tensor* tensor_in, const Tensor* tensor_out, const Tensor& out_backprop, const TensorShape& tensor_in_shape, bool propagate_nans) argument
[all...]
H A Dmaxpooling_op.cc234 const Tensor& tensor_out = context->input(1); variable
240 OP_REQUIRES(context, tensor_out.dims() == 4,
241 errors::InvalidArgument("tensor_out must be 4-dimensional"));
250 {1}, DataTypeToEnum<T>::v(), tensor_out.shape(),
254 tensor_out.shape(),
366 const Tensor& tensor_out = context->input(1); variable
372 OP_REQUIRES(context, tensor_out.dims() == 4,
373 errors::InvalidArgument("tensor_out must be 4-dimensional"));
408 stride, padding_, data_format_, &tensor_in, &tensor_out, out_backprop,
472 const Tensor& tensor_out variable
524 SpatialMaxPoolGradGrad(OpKernelContext* context, Tensor* bottom_diff, const Tensor& tensor_in, const Tensor& tensor_out, const Tensor& top_diff, const PoolParameters& params, const Padding& padding) argument
669 const Tensor& tensor_out = context->input(1); variable
[all...]
H A Dpooling_ops_3d.cc209 const Tensor& tensor_out, const Tensor& out_backprop,
273 // Slice from tensor_out.
276 tensor_out.tensor<T, 5>().slice(src_indices, src_sizes);
341 const Tensor& tensor_out = context->input(1); variable
345 OP_REQUIRES(context, tensor_out.dims() == 5,
346 errors::InvalidArgument("tensor_out must be 5-dimensional"));
369 context, tensor_in, tensor_out, out_backprop, window, stride, out,
544 const Tensor& tensor_in, const Tensor& tensor_out,
561 ConstEigenMatrixMap out_mat(tensor_out.flat<T>().data(), params.depth,
685 const Tensor& tensor_out variable
208 launch(OpKernelContext* context, const Tensor& tensor_in, const Tensor& tensor_out, const Tensor& out_backprop, const std::array<int64, 3>& window, const std::array<int64, 3>& stride, const std::array<int64, 3>& out, const std::array<int64, 3>& padding, TensorFormat data_format, Tensor* output) argument
543 launch(OpKernelContext* context, const Pool3dParameters& params, const Tensor& tensor_in, const Tensor& tensor_out, const Tensor& tensor_top_diff, Tensor* tensor_bottom_diff) argument
773 launch(OpKernelContext* context, const Tensor& tensor_in, const Tensor& tensor_out, const Tensor& out_backprop, const std::array<int64, 3>& window, const std::array<int64, 3>& stride, const std::array<int64, 3>& out, const std::array<int64, 3>& padding, TensorFormat data_format, Tensor* input_backprop) argument
807 launch(OpKernelContext* context, const Pool3dParameters& params, const Tensor& tensor_in, const Tensor& tensor_out, const Tensor& tensor_top_diff, Tensor* tensor_bottom_diff) argument
[all...]
H A Dpooling_ops_3d_sycl.h348 const Tensor& tensor_out, const Tensor& out_backprop,
366 device.get_sycl_buffer(tensor_out.template flat<T>().data());
477 const Tensor& tensor_in, const Tensor& tensor_out,
486 device.get_sycl_buffer(tensor_out.template flat<T>().data());
347 launch(OpKernelContext* context, const Tensor& tensor_in, const Tensor& tensor_out, const Tensor& out_backprop, const std::array<int64, 3>& window, const std::array<int64, 3>& stride, const std::array<int64, 3>& out, const std::array<int64, 3>& padding, TensorFormat data_format, Tensor* output) argument
476 launch(OpKernelContext* context, const Pool3dParameters& params, const Tensor& tensor_in, const Tensor& tensor_out, const Tensor& out_backprop, Tensor* output) argument
/external/tensorflow/tensorflow/core/util/
H A Dmkl_util.h880 inline void AllocTmpBuffer(OpKernelContext* context, Tensor* tensor_out, argument
886 tf_shape, tensor_out));
887 *buf_out = static_cast<void*>(tensor_out->flat<T>().data());
891 inline void AllocTmpBuffer(OpKernelContext* context, Tensor* tensor_out, argument
900 tf_shape, tensor_out));
901 *buf_out = static_cast<void*>(tensor_out->flat<float>().data());
905 inline void AllocTmpBuffer(OpKernelContext* context, Tensor* tensor_out, argument
908 tf_shape, tensor_out));

Completed in 382 milliseconds