| 902 | |
| 903 | #if DEBUG_MODEL |
| 904 | DebugTensor::DebugTensor(const std::vector<float>& data) { |
| 905 | data_f32 = data; |
| 906 | data_type = DataType::F32; |
| 907 | } |
| 908 | DebugTensor::DebugTensor(const std::vector<f16_t>& data) { |
| 909 | data_f16 = data; |
| 910 | data_type = DataType::F16; |
nothing calls this directly
no outgoing calls
no test coverage detected