summaryrefslogtreecommitdiff
path: root/candle-wasm-tests/tests/quantized_tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'candle-wasm-tests/tests/quantized_tests.rs')
-rw-r--r--candle-wasm-tests/tests/quantized_tests.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/candle-wasm-tests/tests/quantized_tests.rs b/candle-wasm-tests/tests/quantized_tests.rs
index 0594a4fa..d16cf497 100644
--- a/candle-wasm-tests/tests/quantized_tests.rs
+++ b/candle-wasm-tests/tests/quantized_tests.rs
@@ -134,6 +134,12 @@ fn quantized_matmul_q40() -> Result<()> {
}
#[wasm_bindgen_test]
+fn quantized_matmul_q4k() -> Result<()> {
+ ggml_matmul_error_test::<candle::quantized::k_quants::BlockQ4K>()?;
+ Ok(())
+}
+
+#[wasm_bindgen_test]
fn quantized_matmul_q80() -> Result<()> {
ggml_matmul_error_test::<candle::quantized::k_quants::BlockQ8_0>()?;
Ok(())