diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2024-03-05 09:50:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-05 09:50:37 +0100 |
commit | bd9ab9bc04d9e4dc1a310aa899963598460b2bce (patch) | |
tree | 7757c978c6fde9320f4480e111cd5c02db1fc77e /candle-core/tests | |
parent | 8cc0a183ba25d2de98463fa004314f7c5df1bfea (diff) | |
download | candle-bd9ab9bc04d9e4dc1a310aa899963598460b2bce.tar.gz candle-bd9ab9bc04d9e4dc1a310aa899963598460b2bce.tar.bz2 candle-bd9ab9bc04d9e4dc1a310aa899963598460b2bce.zip |
Add a cuda kernel for dequantizing q8_0. (#1804)
Diffstat (limited to 'candle-core/tests')
-rw-r--r-- | candle-core/tests/quantized_tests.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/candle-core/tests/quantized_tests.rs b/candle-core/tests/quantized_tests.rs index d767531a..a2629341 100644 --- a/candle-core/tests/quantized_tests.rs +++ b/candle-core/tests/quantized_tests.rs @@ -738,10 +738,6 @@ macro_rules! quantized_matmul { // stable. https://github.com/rust-lang/rust/issues/29599 ($fn_name: ident, $fn_name_cpu: ident, $fn_name_cuda: ident, $fn_name_metal: ident, $dtype: expr) => { fn $fn_name(device: &Device) -> Result<()> { - if device.is_cuda() { - // TODO Enable Cuda GGML sometime maybe. - return Ok(()); - } test_matmul(device, (1, 3, 4, 256), $dtype)?; Ok(()) } |