Home
last modified time | relevance | path

Searched refs:num_layers_t (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Dcudnn_rnn_ops.cc937 const Tensor* num_layers_t = nullptr; in ExtractCudnnRNNParamsInfo() local
938 TF_RETURN_IF_ERROR(context->input("num_layers", &num_layers_t)); in ExtractCudnnRNNParamsInfo()
939 if (!TensorShapeUtils::IsScalar(num_layers_t->shape())) { in ExtractCudnnRNNParamsInfo()
942 int num_layers = num_layers_t->scalar<int>()(); in ExtractCudnnRNNParamsInfo()
1103 const Tensor* num_layers_t = nullptr; in Compute() local
1104 OP_REQUIRES_OK(context, context->input("num_layers", &num_layers_t)); in Compute()
1105 CHECK(TensorShapeUtils::IsScalar(num_layers_t->shape())) in Compute()
1107 int num_layers = num_layers_t->scalar<int>()(); in Compute()
/external/tensorflow/tensorflow/contrib/boosted_trees/kernels/
Dtraining_ops.cc947 Tensor* num_layers_t = nullptr; in Compute() local
949 "num_layers", TensorShape({}), &num_layers_t)); in Compute()
963 num_layers_t->scalar<int64>()() = num_layers; in Compute()