| 111 | size_t size = 0; // size in bytes |
| 112 | |
| 113 | QTensor() = default; |
| 114 | QTensor(Quant quant, std::array<int, 4> shape, void* data, size_t size) : quant(quant), shape(shape), data(data), size(size) {} |
| 115 | QTensor(const QTensor& other) = default; |
| 116 | static QTensor from_codec_tensor(const Tensor& tensor, Quant weight_quant, std::array<int, 4> shape, const int debug_line); |
nothing calls this directly
no outgoing calls
no test coverage detected