Home
last modified time | relevance | path

Searched refs:OpSpec (Results 1 – 14 of 14) sorted by relevance

/external/tensorflow/tensorflow/go/op/
Dwrappers.go51 opspec := tf.OpSpec{
77 opspec := tf.OpSpec{
103 opspec := tf.OpSpec{
134 opspec := tf.OpSpec{
151 opspec := tf.OpSpec{
176 opspec := tf.OpSpec{
192 opspec := tf.OpSpec{
246 opspec := tf.OpSpec{
283 opspec := tf.OpSpec{
345 opspec := tf.OpSpec{
[all …]
Dop.go45 return scope.AddOperation(tf.OpSpec{
Dscope.go75 func (s *Scope) AddOperation(args tf.OpSpec) *tf.Operation {
/external/tensorflow/tensorflow/go/
Dutil_test.go20 op, err := g.AddOperation(OpSpec{
38 op, err := g.AddOperation(OpSpec{
50 op, err := g.AddOperation(OpSpec{
59 op, err := g.AddOperation(OpSpec{
Dgraph_test.go162 op0, err := g.AddOperation(OpSpec{
171 op1, err := g.AddOperation(OpSpec{
180 op2, err := g.AddOperation(OpSpec{
248 op0, err := g.AddOperation(OpSpec{
257 op1, err := g.AddOperation(OpSpec{
296 op0, err := g.AddOperation(OpSpec{
305 op1, err := g.AddOperation(OpSpec{
361 op0, err := g.AddOperation(OpSpec{
Dsession_test.go95 l2, err := graph.AddOperation(OpSpec{
109 fetch, err := graph.AddOperation(OpSpec{
212 concat, err := g.AddOperation(OpSpec{
246 hash, _ = g.AddOperation(OpSpec{
253 str, _ = g.AddOperation(OpSpec{
Doperation_test.go67 op, err := graph.AddOperation(OpSpec{
88 _, err := g.AddOperation(OpSpec{
237 op, err := graph.AddOperation(OpSpec{
Dattrs_test.go46 cases := []OpSpec{
Dgraph.go272 type OpSpec struct { struct
311 func (g *Graph) AddOperation(args OpSpec) (*Operation, error) {
/external/tensorflow/tensorflow/go/genop/internal/
Dgenop_test.go76 opspec := tf.OpSpec{
125 opspec := tf.OpSpec{
170 opspec := tf.OpSpec{
297 opspec := tf.OpSpec{
342 opspec := tf.OpSpec{
421 opspec := tf.OpSpec{
526 opspec := tf.OpSpec{
781 opspec := tf.OpSpec{
Dgenop.go320 opspec := tf.OpSpec{
/external/tensorflow/tensorflow/java/src/gen/cc/
Dop_generator.cc77 void CollectOpDependencies(const OpSpec& op, RenderMode mode, in CollectOpDependencies()
147 void RenderSecondaryFactoryMethod(const OpSpec& op, const Type& op_class, in RenderSecondaryFactoryMethod()
200 void RenderFactoryMethods(const OpSpec& op, const Type& op_class, in RenderFactoryMethods()
276 void RenderConstructor(const OpSpec& op, const Type& op_class, in RenderConstructor()
320 void RenderGettersAndSetters(const OpSpec& op, SourceWriter* writer) { in RenderGettersAndSetters()
341 void RenderInterfaceImpl(const OpSpec& op, RenderMode mode, in RenderInterfaceImpl()
387 void RenderOptionsClass(const OpSpec& op, const Type& op_class, in RenderOptionsClass()
419 void GenerateOp(const OpSpec& op, const EndpointSpec& endpoint, in GenerateOp()
551 OpSpec op(OpSpec::Create(op_def, *api_def)); in Run()
Dop_specs.h132 class OpSpec {
139 static OpSpec Create(const OpDef& op_def, const ApiDef& api_def);
160 explicit OpSpec(const string& graph_op_name, bool hidden, in OpSpec() function
Dop_specs.cc354 OpSpec OpSpec::Create(const OpDef& op_def, const ApiDef& api_def) { in Create()
355 OpSpec op(api_def.graph_op_name(), api_def.visibility() == ApiDef::HIDDEN, in Create()