Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsConstant (0.69 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      }
    
      return absl::OkStatus();
    }
    
    Status CopyOutsideCompilationConstNodes(
        Graph* g, const string& outside_compilation_attr_name) {
      for (Node* n : g->op_nodes()) {
        if (!n->IsConstant() ||
            !HasNodeAttr(n->def(), outside_compilation_attr_name)) {
          continue;
        }
    
        std::vector<const Edge*> out_edges(n->out_edges().begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top