| 285 | const auto bytes = bf16_bytes(values); |
| 286 | set_tensor_bytes(tensor, bytes.data(), bytes.size(), name); |
| 287 | return; |
| 288 | } |
| 289 | const auto bytes = quantize_f32_rows(name, values, shape, type); |
| 290 | set_tensor_bytes(tensor, bytes.data(), bytes.size(), name); |
| 291 | } |
| 292 |
nothing calls this directly
no test coverage detected