Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MlrtDialect (0.28 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.cc

        // All mlrt dialect ops can be inlined.
        return true;
      }
    };
    
    }  // namespace
    
    MlrtDialect::MlrtDialect(mlir::MLIRContext *context)
        : mlir::Dialect(/*name=*/"mlrt", context,
                        mlir::TypeID::get<MlrtDialect>()) {
      addTypes<FutureType>();
      addTypes<PromiseType>();
      addTypes<AsyncHandleType>();
      addInterfaces<MlrtInlinerInterface>();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.h

    #include "mlir/IR/OpDefinition.h"  // from @llvm-project
    #include "mlir/IR/OpImplementation.h"  // from @llvm-project
    
    namespace mlrt {
    namespace compiler {
    
    class MlrtDialect : public mlir::Dialect {
     public:
      explicit MlrtDialect(mlir::MLIRContext *context);
      static llvm::StringRef getDialectNamespace() { return "mlrt"; }
    
      mlir::Type parseType(mlir::DialectAsmParser &parser) const override;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top