Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tac_module (0.47 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    }
    
    std::string MlirModuleToString(mlir::ModuleOp module,
                                   mlir::OpPrintingFlags flags) {
      std::string txt_module;
      {
        llvm::raw_string_ostream os{txt_module};
        module.print(os, flags);
      }
      return txt_module;
    }
    
    std::string MlirModuleToString(mlir::ModuleOp module, bool show_debug_info) {
      mlir::OpPrintingFlags flags;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    }
    
    // -----
    
    func.func @testXlaHostComputeMlir(%arg0: tensor<2xf32>) -> () {
      // expected-error @+1 {{can not be deserialized}}
      "tf._XlaHostComputeMlir"(%arg0) {send_key="", recv_key="", host_mlir_module="bad_module"} : (tensor<2xf32>) -> ()
      func.return
    }
    
    // -----
    
    func.func @testXlaHostComputeMlir(%arg0: tensor<2xf32>) -> () {
      // expected-error @+1 {{'host_mlir_module' does not contain 'host_func' function}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
Back to top