Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for _Arg (0.03 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        int GetResultIndexForEdge(const Edge* edge) const;
    
        // Creates an _Arg node for the src node of edge, and add its index to
        // args_by_src_, if none exists yet. Also adds its index to args_by_dst_,
        // and adds the edge within the subgraph from the _Arg node to the image of
        // the dst node.
        Status RecordArg(const Edge* edge,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          "XlaSpmdShardToFullShape",
          "XlaSvd",
          "XlaVariadicReduce",
          "XlaVariadicReduceV2",
          "XlaVariadicSort",
          "XlaWhile",
          "Zeta",
          "_Arg",
          "_ArrayToList",
          "_ListToArray",
          "_Retval"};
      return result;
    }
    
    }  // namespace testing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    }
    
    TEST(XlaCompilationTest, DontCountIdentityOps) {
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
      Scope root = Scope::NewRootScope().ExitOnError();
      {
        auto a = ops::_Arg(root.WithOpName("A"), DT_INT32, 0);
        auto b = ops::Identity(root.WithOpName("B"), a);
        auto c = ops::Identity(root.WithOpName("C"), b);
        auto r = ops::_Retval(root.WithOpName("R"), c, 0);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
Back to top