Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RuntimeFallbackDialect (0.35 sec)

  1. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.cc

    // TfrtDelegate Dialect
    //===----------------------------------------------------------------------===//
    
    RuntimeFallbackDialect::RuntimeFallbackDialect(MLIRContext *context)
        : Dialect(/*name=*/"tfd", context, TypeID::get<RuntimeFallbackDialect>()) {
      allowUnknownTypes();
    
      allowUnknownOperations();
    
      addOperations<
    #define GET_OP_LIST
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 20 20:56:11 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.h

    #include "tfrt/tensor/opdefs/tensor.h"  // from @tf_runtime
    
    namespace mlir {
    namespace tfd {
    
    // Dialect for TFRT delegate operations.
    class RuntimeFallbackDialect : public Dialect {
     public:
      explicit RuntimeFallbackDialect(MLIRContext* context);
      static StringRef getDialectNamespace() { return "tfd"; }
    };
    
    }  // namespace tfd
    }  // namespace mlir
    
    #define GET_OP_CLASSES
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 20 20:56:11 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top