Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for IsConstant (0.09 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)
  2. RELEASE.md

        operation
        ([CVE-2022-23587](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23587))
    *   Fixes a null pointer dereference in Grappler's `IsConstant`
        ([CVE-2022-23589](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23589))
    *   Fixes a `CHECK` failure in constant folding
        ([CVE-2021-41197](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-41197))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top