Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for _xla_compile_id (0.14 sec)

  1. tensorflow/compiler/jit/encapsulate_xla_computations_pass.h

    // XlaLaunch nodes.
    //
    // xla.compile() does two main things:
    // a) marks operators that make up an XLA computation with the attribute
    //    _xla_compile_id=XYZ, where XYZ is a unique key.
    // b) adds XlaClusterOutput nodes to represent outputs of the computation.
    //    These nodes are not marked with the _xla_compile_id attribute.
    
    #ifndef TENSORFLOW_COMPILER_JIT_ENCAPSULATE_XLA_COMPUTATIONS_PASS_H_
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/defs.cc

    // Automatically inserted by auto_jit to guide clustering results.  Effective
    // only when auto_jit is ON.
    const char* const kXlaInternalScopeAttr = "_XlaInternalScope";
    
    const char* const kXlaClusterIdAttr = "_xla_compile_id";
    
    static std::atomic<bool> xla_devices_creation_required(false);
    
    // Request XLA:GPU and XLA:CPU device creation. Deprecated, only used by XRT
    // backend.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 07 01:03:32 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/defs.h

    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"
    
    [[deprecated("XLA:CPU/GPU devices are deprecated")]] void
    RequestXlaDevicesCreation();
    
    [[deprecated("XLA:CPU/GPU devices are deprecated")]] bool
    XlaDevicesCreationRequired();
    
    }  // namespace tensorflow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 07 01:03:32 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/functional_grad_test.cc

      *(f_lib_proto.add_function()) = test::function::XTimesTwo();
    
      // Construct a graph:
      //   A = Placeholder[dtype=int32]
      //   B = XTimesTwo[_tpu_replicate="cluster"](A)
      //   C = XTimesTwo[_xla_compile_id="cluster"](A)
      TF_ASSERT_OK(scope_.graph()->AddFunctionLibrary(f_lib_proto));
    
      Output x = Placeholder(scope_, DT_FLOAT);
      NameAttrList f;
      f.set_name("XTimesTwo");
      (*f.mutable_attr())["T"].set_type(DT_FLOAT);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 26 14:42:24 UTC 2021
    - 3K bytes
    - Viewed (0)
Back to top