Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for __xla_ (0.31 sec)

  1. tensorflow/compiler/aot/tfcompile.bzl

        # Rule that runs tfcompile to produce the header and object file.
        header_file = name + ".h"
    
        # The XLA backends morph kernel name prefix __ that is not in the form of
        # __xla_.
        ep = ("__xla_" + native.package_name() + "__" + name).replace("/", "_")
        if type(tfcompile_flags) == type(""):
            flags = tfcompile_flags
        else:
            flags = " ".join([
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass_test.cc

      EXPECT_NE(add_node, nullptr);
      add_node->AddAttr(kXlaConnectedToXlaComputationAttrName, "cluster");
      add_node->AddAttr(kXlaConnectedFromXlaComputationAttrName, "cluster");
    
      RewriteOutsideCompilationSubgraphFn rewrite_fn("_xla", "_oc", "cluster", "");
      std::vector<OutputTensor> arg_source_tensors;
      NodeDef call_node_def;
      call_node_def.set_op("0");
      TF_CHECK_OK(
          rewrite_fn(arg_source_tensors, &g, nullptr, nullptr, &call_node_def));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 41K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

    #include "tensorflow/core/public/session_options.h"
    
    namespace tensorflow {
    namespace {
    
    class BuildXlaOpsTest : public ::testing::Test {
     protected:
      void SetUp() override {
        // This is needed to register the XLA_* devices.
        CHECK(DeviceFactory::AddDevices(
                  SessionOptions(), "/job:localhost/replica:0/task:0", &devices_)
                  .ok());
      }
    
     private:
      std::vector<std::unique_ptr<Device>> devices_;
    };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/flags.h

      bool tf_xla_compile_on_demand;
    
      // Enables "XLA" devices if this flag is set.
      bool tf_xla_enable_xla_devices;
    };
    
    // Flags common to the _Xla* ops and their kernels.
    struct XlaOpsCommonFlags {
      // If true, _XlaCompile always refuses to compile the cluster, which means the
      // XLA clusters always run in the TF executor.  Defaults to false.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/flags.cc

                "autoclustering ops are compiled one by one just-in-time."),
    
           Flag("tf_xla_enable_xla_devices",
                &device_flags->tf_xla_enable_xla_devices,
                "Generate XLA_* devices, where placing a computation on such a "
                "device"
                "forces compilation by XLA. Deprecated."),
    
           Flag("tf_xla_always_defer_compilation",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // second XLA cluster nor the output from the first XLA cluster are supported
      // because of (2).
      //
      // TODO(b/113100872): This can be fixed if the TensorFlow representation for
      // TensorArray and Stack on the XLA_{C|G}PU devices were the same in XLA; then
      // (2) would no longer hold.
    
      if (n.assigned_device_name().empty()) {
        *ignore = false;
        return absl::OkStatus();
      }
    
      TF_ASSIGN_OR_RETURN(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    FIG. 11.] With the Center O [in _Fig._ 11.] and Radius OD describe a Circle ADF, and distinguish its Circumference into seven Parts DE, EF, FG, GA, AB, BC, CD, proportional to the seven Musical Tones or Intervals of the eight Sounds, _Sol_, _la_, _fa_, _sol_, _la_, _mi_, _fa_, _sol_, contained in an eight, that is, proportional to the Number 1/9, 1/16, 1/10, 1/9, 1/16, 1/16, 1/9. Let the first Part DE represent a red Colour, the second EF orange, the third FG yellow, the fourth CA green, the fifth AB...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  8. src/testdata/Isaac.Newton-Opticks.txt

    and distinguish its Circumference into seven Parts DE, EF, FG, GA, AB,
    BC, CD, proportional to the seven Musical Tones or Intervals of the
    eight Sounds, _Sol_, _la_, _fa_, _sol_, _la_, _mi_, _fa_, _sol_,
    contained in an eight, that is, proportional to the Number 1/9, 1/16,
    1/10, 1/9, 1/16, 1/16, 1/9. Let the first Part DE represent a red
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
Back to top