Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CompileTFMLIRToBEF (0.11 sec)

  1. tensorflow/compiler/mlir/tfrt/function/function.cc

    #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,
                              mlir::ModuleOp module, tfrt::BefBuffer* bef_buffer) {
      mlir::OpPrintingFlags print_flags;
      print_flags.elideLargeElementsAttrs();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 08:13:15 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/function/function.h

      // result transfer behavior.
      bool tpu_transfer_result_to_host = false;
    };
    
    // Compile MLIR generated by tf.function in TF dialect into BEF.
    Status CompileTFMLIRToBEF(const TfrtFunctionCompileOptions& options,
                              mlir::ModuleOp module, tfrt::BefBuffer* bef_buffer);
    
    }  // 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)
Back to top