| 327 | weights.use_bias = false; |
| 328 | const auto data = source.require_tensor_as_shape( |
| 329 | prefix + ".weight", |
| 330 | storage_type, |
| 331 | {output_dim, input_dim, 1}, |
| 332 | {output_dim, input_dim}); |
| 333 | weights.weight = store.make_tensor(data.shape, data.type, data.bytes.data(), data.bytes.size()); |
| 334 | return weights; |
| 335 | } |
| 336 | |
| 337 | RmsNormWeights load_rms_norm( |
| 338 | const assets::TensorSource & source, |
no test coverage detected