Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 428 for _xla (0.07 sec)

  1. tensorflow/compiler/jit/ops/xla_ops_grad.py

    @ops.RegisterGradient("XlaClusterOutput")
    def _XlaClusterOutputGrad(_, grad):
      del grad  # unused
      raise RuntimeError("Gradient computation of graph in xla.compile() is "
                         "prohibited because it can cause performance degradation."
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_quantized_functions.cc

          llvm::cl::desc("Choose target opset."),
          llvm::cl::values(
              clEnumValN(OpSet::TF, "TF",
                         "Uses TF ops that mimic quantization behavior"),
              clEnumValN(OpSet::XLA, "XLA", "Uses TF XLA ops"),
              clEnumValN(OpSet::UNIFORM_QUANTIZED, "UNIFORM_QUANTIZED",
                         "Uses TF Uniform Quantized ops"))};
    };
    
    llvm::StringRef InsertQuantizedFunctionsPass::GetFunctionLibrary(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util_test.cc

    }
    
    absl::Status BuildHloFromGraph(Graph& graph, bool use_output_shapes) {
      xla::XlaBuilder builder(
          ::testing::UnitTest::GetInstance()->current_test_info()->name());
      mlir::MLIRContext mlir_context;
      llvm::SmallVector<xla::XlaOp, 4> xla_params;
      std::vector<xla::XlaOp> returns(1);
      return BuildHloFromGraph(graph, builder, mlir_context, xla_params, returns,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 19:54:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/tests/device_compiler_test_helper.h

      }
    
      JitCompilationListener* listener() const { return listener_; }
    
      // Returns a test graph that will split into two XLA clusters (due to a node
      // with _XlaCompile = false).
      GraphDef GetTestGraph(const PartialTensorShape& input_shape);
    
      // Runs the graph using specified batch size both with and without XLA JIT
      // compilation. Returns an error if the results between the two do not match.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-include-tf2xla-fallback.mlir

    // RUN: tf-opt "-xla-legalize-tf=use-tf2xla-fallback=true device-type=XLA_CPU_JIT" -verify-diagnostics %s | FileCheck --check-prefix SUPPORTED_FALLBACK_DEVICE %s
    // RUN: tf-opt "-xla-legalize-tf=use-tf2xla-fallback=true" %s | FileCheck --check-prefix UNSPECIFIED_FALLBACK_DEVICE %s
    // RUN: tf-opt "-xla-legalize-tf=use-tf2xla-fallback=true device-type=INVALID_DEVICE_TYPE" %s | FileCheck --check-prefix UNSUPPORTED_FALLBACK_DEVICE %s
    
    // We run this test four times:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 16 19:04:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_compiler_client.h

    #define TENSORFLOW_COMPILER_JIT_DEVICE_COMPILER_CLIENT_H_
    
    #include <optional>
    #include <string>
    #include <variant>
    
    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "xla/client/executable_build_options.h"
    
    namespace tensorflow {
    
    template <typename ExecutableType, typename ClientType>
    class DeviceCompilerClient {
     public:
      DeviceCompilerClient() = default;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_mlir.h

        const std::vector<TensorShape>& arg_shapes,
        std::vector<tpu::ShardingAndIndex>* arg_core_mapping,
        std::vector<std::vector<xla::Shape>>* per_core_arg_shapes);
    
    // Compiles a serialized MLIR module into XLA HLO, generates all accompanying
    // metadata and stores them in CompilationResult.
    absl::StatusOr<XlaCompilationResult> LegalizeWithMlirBridge(
        const tpu::MlirToHloArgs& computation,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_util.h

    #include "absl/container/flat_hash_map.h"
    #include "absl/numeric/bits.h"
    #include "absl/strings/string_view.h"
    #include "absl/types/span.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    #include "xla/status_macros.h"
    #include "xla/statusor.h"
    #include "tensorflow/core/framework/types.h"
    
    namespace tensorflow {
    namespace jit {
    class DeviceInfoCache;
    class DeviceSet;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/pjrt_compile_util_test.cc

      NameAttrList function;
      function.set_name("foo");
    
      ResourceMgr resource_mgr("");
    
      const XlaCompiler::CompilationResult* compilation_result = nullptr;
      xla::PjRtLoadedExecutable* pjrt_executable = nullptr;
      xla::PjRtClient* pjrt_client = nullptr;
    
      TF_EXPECT_OK(CompileToPjRtLoadedExecutable(
          device, platform_info, function, SampleArgsForAddXY(),
          DeviceCompileMode::kStrict, /*has_ref_vars=*/true,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 21 23:21:57 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/argument-sharding-invalid.mlir

    // RUN: not tf-mlir-translate -mlir-tf-to-hlo-text %s -tf-input-shapes=128,10 -tf-xla-emit-use-tuple-args -tf-xla-emit-return-tuple 2>&1 | FileCheck %s
    
    module attributes {tf.versions = {producer = 179 : i32}} {
      func.func @main(%arg0: tensor<128x8xf32> {mhlo.sharding = "bad_sharding"}) {
        func.return
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 364 bytes
    - Viewed (0)
Back to top