Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 194 for TFRT (0.4 sec)

  1. tensorflow/c/experimental/next_pluggable_device/BUILD

        deps = [
            "//tensorflow/compiler/jit:pjrt_tensor_buffer_util",
            "//tensorflow/core:framework",
            "//tensorflow/core/tfrt/common:async_value_tensor",
            "//tensorflow/core/tfrt/common:global_state",
            "//tensorflow/core/tfrt/common:pjrt_state",
            "//tensorflow/core/tfrt/common:pjrt_util",
            "@com_google_absl//absl/status",
            "@com_google_absl//absl/status:statusor",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/decompose_resource_op.mlir

    // RUN: tf-tfrt-opt -tf-executor-to-tfrt-pipeline=decompose-resource-ops=true %s | FileCheck %s --dump-input=fail
    
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 293 : i32}} {
    
    // CHECK-LABEL: func @gather
    // CHECK-SAME: ([[in_chain:%.*]]: !tfrt.chain
    // CHECK-SAME: [[arg0:%.*]]: !tfrt_fallback.tf_tensor, [[arg1:%.*]]: !tfrt_fallback.tf_tensor)
    // CHECK: [[const:%.*]] = tfrt_fallback_async.const_dense_tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/fallback_canonicalization.mlir

      %1 = tfrt_fallback_async.corert_tensorhandle_to_fallback_tensor %0 {_tfrt_cost = 1 : i64, device = "/CPU:0"} : (!corert.tensorhandle) -> (!tfrt_fallback.tf_tensor)
    
      // CHECK: tfrt.return [[arg]]
      tfrt.return %1 : !tfrt_fallback.tf_tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/ir/gpu_ops.h

    using namespace mlir;  // NOLINT
    
    namespace tfrt {
    namespace gpu {
    
    // Dialect for TFRT GPU operations.
    class GpuRuntimeDialect : public Dialect {
     public:
      explicit GpuRuntimeDialect(MLIRContext *context);
      static StringRef getDialectNamespace() { return "gpurt"; }
    };
    
    }  // namespace gpu
    }  // namespace tfrt
    
    #define GET_OP_CLASSES
    #include "tensorflow/compiler/mlir/tfrt/ir/gpu_ops.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 24 14:49:54 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/analysis/update_op_cost_in_tfrt_mlir_test.cc

    TEST(CostUpdateTest, Basic) {
      std::string saved_model_mlir_path = tensorflow::GetDataDependencyFilepath(
          "tensorflow/compiler/mlir/tfrt/tests/analysis/testdata/test.mlir");
    
      mlir::DialectRegistry registry;
      tfrt::RegisterTFRTDialects(registry);
      registry.insert<tfrt::fallback_async::FallbackAsyncDialect>();
      registry.insert<tfrt::fallback_sync::FallbackSyncDialect>();
      mlir::MLIRContext context(registry);
      auto module =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 21 22:52:12 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/saved_model/saved_model_test.cc

          "tensorflow/compiler/mlir/tfrt/tests/saved_model/testdata/test.mlir");
    
      mlir::DialectRegistry registry;
      mlir::RegisterAllTensorFlowDialects(registry);
      mlir::MLIRContext context(registry);
      auto module =
          mlir::parseSourceFile<mlir::ModuleOp>(saved_model_mlir_path, &context);
      ASSERT_TRUE(module);
    
      tfrt::BefBuffer bef_buffer;
    
      auto runtime =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 13 01:17:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/ir/BUILD

        srcs = ["tfrt_fallback_util_test.cc"],
        data = [
            "testdata/test.mlir",
        ],
        deps = [
            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_async_opdefs",
            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_sync_opdefs",
            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_util",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/platform:resource_loader",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback.cc

    #include "tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback.h"
    
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    #include "mlir/IR/DialectImplementation.h"  // from @llvm-project
    #include "mlir/IR/OpDefinition.h"  // from @llvm-project
    #include "mlir/IR/TypeUtilities.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    
    namespace tfrt {
    namespace fallback {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/analysis/BUILD

            "//tensorflow/compiler/mlir/tfrt:transforms/update_op_cost_in_tfrt_mlir",
            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_async_opdefs",
            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_sync_opdefs",
            "//tensorflow/core:test",
            "//tensorflow/core/platform:resource_loader",
            "//tensorflow/core/tfrt/fallback:cost_recorder",
            "@com_google_absl//absl/container:flat_hash_map",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.cc

      addInterfaces<TensorflowMlrtInlinerInterface>();
    
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.cpp.inc"
          >();
    
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.cpp.inc"
          >();
    }
    
    // Parse a type registered to this dialect.
    mlir::Type TensorflowMlrtDialect::parseType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top