MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / Input

Method Input

tensorflow/cc/framework/ops.h:204–204  ·  view source on GitHub ↗

All of Input's constructors are implicit. Input can be implicitly constructed from the following objects : Output: This is so that the output of an Operation can be directly used as the input to a op wrapper, which takes Inputs. A scalar, or a multi-dimensional tensor specified as a recursive initializer list. This enables directly passing constants as inputs to op wrappers. A Tensor object.

Source from the content-addressed store, hash-verified

202 /// inputs to op wrappers.
203 /// * A Tensor object.
204 Input(const Output& o) : output_(o) {} // NOLINT(runtime/explicit)
205
206 template <typename T, typename = typename std::enable_if<
207 std::is_arithmetic<T>::value ||

Callers 15

TESTFunction · 0.45
lookup_ops.ccFile · 0.45
mainFunction · 0.45
TESTFunction · 0.45
cuda_op_kernel.ccFile · 0.45
testWithEmbeddingsMethod · 0.45
testKerasBatchNormMethod · 0.45
test_ops.ccFile · 0.45

Calls 2

InitializerClass · 0.70
okMethod · 0.45

Tested by 15

TESTFunction · 0.36
mainFunction · 0.36
TESTFunction · 0.36
testWithEmbeddingsMethod · 0.36
testKerasBatchNormMethod · 0.36
make_keras_modelFunction · 0.36