Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TensorflowMlrtTpuDialect (0.3 sec)

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

    #include "tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.h"
    
    namespace tensorflow {
    namespace tf_mlrt_tpu {
    
    TensorflowMlrtTpuDialect::TensorflowMlrtTpuDialect(mlir::MLIRContext *context)
        : mlir::Dialect(/*name=*/"tf_mlrt_tpu", context,
                        mlir::TypeID::get<TensorflowMlrtTpuDialect>()) {
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_tpu_ops.cpp.inc"
          >();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_tpu_ops.h

    #include "mlir/Interfaces/SideEffectInterfaces.h"  // from @llvm-project
    
    namespace tensorflow {
    namespace tf_mlrt_tpu {
    
    class TensorflowMlrtTpuDialect : public mlir::Dialect {
     public:
      explicit TensorflowMlrtTpuDialect(mlir::MLIRContext *context);
      static llvm::StringRef getDialectNamespace() { return "tf_mlrt_tpu"; }
    };
    
    }  // namespace tf_mlrt_tpu
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top