Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for bef (0.38 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/BUILD

    #     ],
    # )
    # copybara:uncomment_end
    
    tf_cc_shared_test(
        name = "kernel_fallback_compat_test",
        srcs = ["kernel_fallback_compat_test.cc"],
        data = [
            "create_op.mlir.bef",
            "custom_thread_pool.mlir.bef",
        ],
        tags = ["no_oss"],
        deps = [
            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_async_opdefs",
            "//tensorflow/core:all_kernels",
            "//tensorflow/core:lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

      CHECK(mlir::succeeded(pm.run(*module)))
          << "Failed to lower module to TFRT: " << os.str();
    
      // Convert module to BEF.
      bef_buffer_ =
          tfrt::ConvertMLIRToBEF(*module, /*disable_optional_sections=*/false);
      CHECK(!bef_buffer_.empty()) << "Failed to convert module to BEF";
    
      bef_file_ =
          BEFFile::Open(bef_buffer_, host_context_->GetKernelRegistry(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/function/function.cc

    #include "tensorflow/compiler/mlir/tfrt/transforms/tfrt_pipeline_options.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/status.h"
    #include "tfrt/bef/bef_buffer.h"  // from @tf_runtime
    #include "tfrt/bef_converter/mlir_to_bef.h"  // from @tf_runtime
    
    namespace tensorflow {
    
    Status CompileTFMLIRToBEF(const TfrtFunctionCompileOptions& options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 08:13:15 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

      }];
    
      let arguments = (ins
        TFRT_ChainType:$in_ch,
        I64Attr:$num_args,
        StrAttr:$device,
        ArrayAttr:$op_attrs,
        // TODO(b/173025975): consider using DictionaryAttr after we support
        // BEF conversion for this type.
        ArrayAttr:$op_func_attrs,
        I64Attr:$op_key,
        StrAttr:$op_name
      );
    
      let results = (outs
        TFRT_ChainType:$out_ch
      );
    
      let hasVerifier = 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/BUILD

            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:Parser",
            "@llvm-project//mlir:Pass",
            "@tf_runtime//:basic_kernels_alwayslink",
            "@tf_runtime//:bef",
            "@tf_runtime//:befexecutor",
            "@tf_runtime//:core_runtime_alwayslink",
            "@tf_runtime//:hostcontext",
            "@tf_runtime//:mlirtobef",
            "@tf_runtime//:support",
        ],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 19:04:21 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/saved_model/saved_model.h

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/framework/types.pb.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: Sat Jan 27 17:42:41 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top