24 lines
407 B
C++
24 lines
407 B
C++
#ifndef BUILDER_SHAPEIMPL_
|
|
#define BUILDER_SHAPEIMPL_
|
|
|
|
#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 {
|
|
|
|
class Shape::Impl {
|
|
public:
|
|
Impl() = default;
|
|
|
|
private:
|
|
};
|
|
|
|
} // namespace builder
|
|
|
|
#endif |