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

17 lines
262 B
C
Raw Normal View History

2021-08-11 10:46:07 +08:00
#ifndef BUILDER_SHAPE_
#define BUILDER_SHAPE_
#include <iostream>
#include <memory>
namespace builder {
class Shape {
class Impl;
std::shared_ptr<Impl> GetImpl() { return impl_; }
private:
std::shared_ptr<Impl> impl_;
};
} // namespace builder
#endif