Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for _XlaScope (0.14 sec)

  1. tensorflow/compiler/jit/defs.cc

    const char* const kXlaMustCompileAttr = "_XlaMustCompile";
    
    const char* const kXlaCompileAttr = "_XlaCompile";
    
    // User-provided through jit_scope APIs. Effective only when auto_jit is OFF.
    const char* const kXlaScopeAttr = "_XlaScope";
    
    // Automatically inserted by auto_jit to guide clustering results.  Effective
    // only when auto_jit is ON.
    const char* const kXlaInternalScopeAttr = "_XlaInternalScope";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 07 01:03:32 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/defs.h

    // on a best-effort basis.
    extern const char* const kXlaCompileAttr;  // "_XlaCompile"
    
    // Implies auto-clustering within the given scope.
    extern const char* const kXlaScopeAttr;    // "_XlaScope"
    extern const char* const kXlaInternalScopeAttr;  // "_XlaInternalScope"
    
    // The id of the compiled cluster.
    extern const char* const kXlaClusterIdAttr;  // "_xla_compile_id"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 07 01:03:32 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // automatically generated by the ClusterScopingPass when auto_jit is on.  As
      // such, we respect _XlaScope only when auto_jit is off, while respecting
      // _XlaInternalScope only when auto_jit is on.
      //
      // We may want to restrict the _XlaScope behavior to require all nodes marked
      // with _XlaCompile=true to also have a _XlaScope property set (and raise an
      // error otherwise); but for now we don't do this.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top