summaryrefslogtreecommitdiff
path: root/candle-core/tests/quantized_tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'candle-core/tests/quantized_tests.rs')
-rw-r--r--candle-core/tests/quantized_tests.rs4
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(())
}