Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 194 for TFRT (0.04 sec)

  1. tensorflow/compiler/jit/BUILD

            ":pjrt_device_compiler_client",
            ":xla_device_compiler_client",
            ":xla_device_context",
            "//tensorflow/core/tfrt/common:create_pjrt_client_util",
            "//tensorflow/core/tfrt/common:global_state",
            "//tensorflow/core/tfrt/common:pjrt_util",
            "//tensorflow/core/tpu:tpu_defs",
            "@com_google_absl//absl/algorithm:container",
            "@com_google_absl//absl/log",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/ir/testdata/test.mlir

    func.func @test(%ch: !tfrt.chain, %arg0: !corert.tensorhandle, %arg1_th: !corert.tensorhandle) {
      %cpu = corert.get_op_handler %ch "cpu"
      %0 = corert.executeop(%cpu) "tf.Relu"(%arg0) { T = f32 } : 1
      %arg1 = tfrt_fallback_async.corert_tensorhandle_to_fallback_tensor %arg1_th {_tfrt_cost = 1 : i64, device = "/CPU:0"} : (!corert.tensorhandle) -> (!tfrt_fallback.tf_tensor)
      %1 = tfrt_fallback_async.executeop key(0) cost(100) device("/CPU:0") "tf.Relu"(%arg1) { T = f32 } : 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 11:03:04 UTC 2022
    - 496 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/BUILD

        test_file_exts = ["mlir"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir:tf-mlir-translate",
            "//tensorflow/compiler/mlir:tf-opt",
            "//tensorflow/compiler/mlir/tfrt:tf-tfrt-opt",
            "@llvm-project//llvm:FileCheck",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 903 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/ir/gpu_ops.td

    #ifdef TFRT_GPU_OPS
    #else
    #define TFRT_GPU_OPS
    
    include "tfrt/tfrt_op_base.td"
    include "tfrt/compiler/opdefs/tfrt_op_interfaces.td"
    include "tfrt/compiler/opdefs/tfrt_traits.td"
    include "tfrt_fallback.td"
    
    def TFRT_GPU_Dialect : Dialect {
      let name = "gpurt";
    
      let description = [{
        The TFRT GPU Dialect.
      }];
    
      let cppNamespace = "::tfrt::gpu";
    }
    
    class Gpu_Op<string mnemonic, list<Trait> traits = []> :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/next_pluggable_device/tensor_pjrt_buffer_util.cc

    #include "tensorflow/core/framework/tensor.h"
    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/tfrt/common/async_value_tensor.h"
    #include "tensorflow/core/tfrt/common/global_state.h"
    #include "tensorflow/core/tfrt/common/pjrt_state.h"
    #include "tensorflow/core/tfrt/common/pjrt_util.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 05:48:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/function/function.h

    #include "absl/strings/string_view.h"
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tfrt/translate/tfrt_compile_options.h"
    #include "tensorflow/core/platform/status.h"
    #include "tfrt/bef/bef_buffer.h"  // from @tf_runtime
    #include "tfrt/core_runtime/tensor_handle.h"  // from @tf_runtime
    
    namespace tfrt {
    class CoreRuntime;
    }
    
    namespace mlir {
    class ModuleOp;
    }
    
    namespace tensorflow {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 04:50:20 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_combine.cc

    #include "mlir/IR/PatternMatch.h"
    #include "tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.h"
    
    // This optimizes the following scenario:
    // %tft0, %c2 = "tfd.move_dht_to_tft"(%dht0, %c1)
    //     : (!dht.host_tensor, !tfrt.chain) -> (!tfd.tf_tensor, !tfrt.chain)
    // %dht1, %c3 = "tfd.convert_tft_to_dht"(%tft0, %c2)
    //     : (!tfd.tf_tensor, !tfrt.chain) -> (!dht.host_tensor, !tfrt.chain)
    // some_op %dht1, %c3
    //
    // becomes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 09 12:09:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.h"
    
    #include "tfrt/basic_kernels/opdefs/types.h"  // from @tf_runtime
    
    namespace mlir {
    namespace tfd {
    
    //===----------------------------------------------------------------------===//
    // TfrtDelegate Dialect
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 20 20:56:11 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  9. .bazelrc

    e/runtime_fallback/test/testdata,tensorflow/core/tfrt/stubs,tensorflow/core/tfrt/tfrt_session,tensorflow/core/tfrt/mlrt,tensorflow/core/tfrt/mlrt/attribute,tensorflow/core/tfrt/mlrt/kernel,tensorflow/core/tfrt/mlrt/bytecode,tensorflow/core/tfrt/mlrt/interpreter,tensorflow/compiler/mlir/tfrt/translate/mlrt,tensorflow/compiler/mlir/tfrt/translate/mlrt/testdata,tensorflow/core/tfrt/gpu,tensorflow/core/tfrt/run_handler_thread_pool,tensorflow/core/tfrt/runtime,tensorflow/core/tfrt/saved_model,tensorf...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/async_op_thread.mlir

    // RUN: tfrt_fallback_translate -mlir-to-bef %s | tf_bef_executor --work_queue_type=mstd 2>&1 | FileCheck %s
    
    func.func @test_async_op_kernel_thread() -> !tfrt.chain {
      %ch0 = tfrt.new.chain
    
      %ch1 = tfrt_fallback_async.createop(%ch0) key(0) device("/CPU:0") "tf.Const"()
             { dtype = i32, value = dense<[2]> : tensor<1xi32> } num_args(0)
      %ch2 = tfrt_fallback_async.createop(%ch1) key(1) device("/CPU:0")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 18 22:58:56 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top