#include "Attribute.h" #include "AttributeImpl.h" #include "Shape.h" #include "Tensor.h" #include "TensorImpl.h" #include "llvm/Support/Casting.h" #include "memory.h" // #include "mlir/Dialect/StandardOps/Ops.h" // #include "mlir/IR/Attributes.h" // #include "mlir/IR/Operation.h" // #include "mlir/IR/StandardTypes.h" // #include "mlir/IR/Types.h" // #include "mlir/IR/Value.h" namespace builder { Integer::Integer(int value) : impl_(std::make_shared(value)) {} Integer::Integer(int64_t value) : impl_(std::make_shared(value)) {} } // namespace builder