Home
last modified time | relevance | path

Searched refs:SubScope (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/go/op/
Dscope_test.go29 sub1 = root.SubScope("x")
30 sub2 = root.SubScope("x")
31 sub1a = sub1.SubScope("y")
32 sub2a = sub2.SubScope("y")
58 sub = root.SubScope("x")
75 zero = Const(s.SubScope("zero"), int32(0))
76 one = Const(s.SubScope("one"), int32(1))
119 square := MatMul(s.SubScope("square"), matrix, matrix)
121 cube := MatMul(s.SubScope("cube"), square, matrix)
133 sub1 = root.SubScope("x")
[all …]
Dgradients_test.go29 x1 = Placeholder(s.SubScope("x1"), tf.Float)
30 x2 = Placeholder(s.SubScope("x2"), tf.Float)
31 y0 = Square(s.SubScope("y0"), x1)
32 y1 = Square(s.SubScope("y1"), y0)
33 y2 = AddN(s.SubScope("y2"), []tf.Output{y0, x2})
47 sub := s.SubScope("sub")
97 x = Placeholder(s.SubScope("x"), tf.Float)
98 y0 = Square(s.SubScope("y0"), x)
99 y1 = Square(s.SubScope("y1"), y0)
138 x = Placeholder(s.SubScope("x1"), tf.Float)
[all …]
Dop_test.go30 Placeholder(s.SubScope("x"), tf.Float, PlaceholderShape(tf.MakeShape(-1, 10)))
31 Placeholder(s.SubScope("y"), tf.Float, PlaceholderShape(tf.ScalarShape()))
32 Placeholder(s.SubScope("z"), tf.Float, PlaceholderShape(tf.Shape{}))
64 x := Placeholder(s.SubScope("x"), tf.Int32, PlaceholderShape(tf.MakeShape(1)))
65 y := Placeholder(s.SubScope("y"), tf.Int32, PlaceholderShape(tf.Shape{}))
Dscope.go97 func (s *Scope) SubScope(namespace string) *Scope { func
/external/tensorflow/tensorflow/go/
Dexample_inception_inference_test.go213 op.Const(s.SubScope("make_batch"), int32(0))),
214 op.Const(s.SubScope("size"), []int32{H, W})),
215 op.Const(s.SubScope("mean"), Mean)),
216 op.Const(s.SubScope("scale"), Scale))
/external/llvm-project/clang/utils/TableGen/
DMveEmitter.cpp1161 Result::Scope SubScope = Scope; in getCodeForDag() local
1167 getCodeForDag(cast<DagInit>(D->getArg(i)), SubScope, Param); in getCodeForDag()
1170 SubScope[std::string(ArgName)] = V; in getCodeForDag()