| 108 | class State : public RefCounted { |
| 109 | public: |
| 110 | State(const RefCountedPtr<Buffer>& buffer_, |
| 111 | const TensorShape& shape_, DataType type_) |
| 112 | : buffer(buffer_), shape(shape_), type(type_) {} |
| 113 | RefCountedPtr<Buffer> buffer; |
| 114 | TensorShape shape; |
| 115 | DataType type; |
nothing calls this directly
no outgoing calls
no test coverage detected