(x)
| 261 | w_q, scales, biases = mx.quantize(w, group_size, bits) |
| 262 | |
| 263 | def fn(x): |
| 264 | return mx.quantized_matmul( |
| 265 | x, w_q, scales, biases, transposed, group_size, bits |
| 266 | ) |
| 267 | |
| 268 | _, vjp_out = mx.vjp(fn, primals=(x,), cotangents=(c,)) |
| 269 |
nothing calls this directly
no outgoing calls
no test coverage detected