Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for constant_normal (0.1 sec)

  1. tensorflow/compiler/jit/xla_cluster_util_test.cc

      s.graph()->AddControlEdge(constant.node(), variable.node());
    }
    
    void CreateSubgraphNotTouchingRefVar(const Scope& s) {
      Output constant =
          ops::Const(s.WithOpName("constant_normal"), Input::Initializer(0.0));
      Output neg = ops::Negate(s.WithOpName("negate_normal"), constant);
      Output add = ops::Add(s.WithOpName("add_normal"), neg, neg);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

            << "All nodes apart from source and sink can access reference variable";
      }
    }
    
    void CreateSubgraphNotTouchingRefVar(const Scope& s) {
      Output constant =
          ops::Const(s.WithOpName("constant_normal"), Input::Initializer(0.0));
      Output neg = ops::Negate(s.WithOpName("negate_normal"), constant);
      Output add = ops::Add(s.WithOpName("add_normal"), neg, neg);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
Back to top