Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for HasNonPrimaryOutputInUse (0.4 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    };
    
    // Returns true if the node with given name has a non primary output that is
    // used by some other node as an input. Returns false if no outputs are in use
    // or only the first output is in use.
    bool HasNonPrimaryOutputInUse(const GraphDef& graph_def,
                                  const std::string& node) {
      for (const auto& node_def : graph_def.node()) {
        for (const auto& input : node_def.input()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top