Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/go/op/
Dwrappers.go88 opspec := tf.OpSpec{
139 opspec := tf.OpSpec{
194 opspec := tf.OpSpec{
256 opspec := tf.OpSpec{
319 opspec := tf.OpSpec{
407 opspec := tf.OpSpec{
506 opspec := tf.OpSpec{
612 opspec := tf.OpSpec{
641 opspec := tf.OpSpec{
760 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.go95 op0, err := g.AddOperation(OpSpec{
104 op1, err := g.AddOperation(OpSpec{
113 op2, err := g.AddOperation(OpSpec{
181 op0, err := g.AddOperation(OpSpec{
190 op1, err := g.AddOperation(OpSpec{
229 op0, err := g.AddOperation(OpSpec{
238 op1, err := g.AddOperation(OpSpec{
294 op0, err := g.AddOperation(OpSpec{
Doperation_test.go67 op, err := graph.AddOperation(OpSpec{
88 _, err := g.AddOperation(OpSpec{
237 op, err := graph.AddOperation(OpSpec{
Dsession_test.go98 concat, err := g.AddOperation(OpSpec{
132 hash, _ = g.AddOperation(OpSpec{
139 str, _ = g.AddOperation(OpSpec{
Dattrs_test.go46 cases := []OpSpec{
Dgraph.go249 type OpSpec struct { struct
288 func (g *Graph) AddOperation(args OpSpec) (*Operation, error) {
/external/tensorflow/tensorflow/go/genop/internal/
Dgenop_test.go75 opspec := tf.OpSpec{
124 opspec := tf.OpSpec{
169 opspec := tf.OpSpec{
296 opspec := tf.OpSpec{
341 opspec := tf.OpSpec{
420 opspec := tf.OpSpec{
525 opspec := tf.OpSpec{
Dgenop.go316 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()
201 void RenderFactoryMethods(const OpSpec& op, const Type& op_class, in RenderFactoryMethods()
273 void RenderConstructor(const OpSpec& op, const Type& op_class, in RenderConstructor()
317 void RenderGettersAndSetters(const OpSpec& op, SourceWriter* writer) { in RenderGettersAndSetters()
338 void RenderInterfaceImpl(const OpSpec& op, RenderMode mode, in RenderInterfaceImpl()
384 void RenderOptionsClass(const OpSpec& op, const Type& op_class, in RenderOptionsClass()
416 void GenerateOp(const OpSpec& op, const EndpointSpec& endpoint, in GenerateOp()
548 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()