mlir-hlo/tools/mlir-tblgen-builder/Builder/ShapeImpl.h

24 lines
407 B
C
Raw Normal View History

2021-08-11 10:46:07 +08:00
#ifndef BUILDER_SHAPEIMPL_
#define BUILDER_SHAPEIMPL_
2021-08-04 20:24:07 +08:00
#include "Builder.h"
#include "llvm/Support/Casting.h"
#include "mlir/IR/Attributes.h"
#include "mlir/IR/Builders.h"
#include "mlir/IR/MLIRContext.h"
#include "mlir/IR/Operation.h"
#include "mlir/IR/Types.h"
#include "mlir/IR/Value.h"
namespace builder {
2021-08-11 10:46:07 +08:00
class Shape::Impl {
2021-08-04 20:24:07 +08:00
public:
Impl() = default;
private:
};
} // namespace builder
#endif