diff options
Diffstat (limited to 'candle-core/src/dummy_cuda_backend.rs')
-rw-r--r-- | candle-core/src/dummy_cuda_backend.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-core/src/dummy_cuda_backend.rs b/candle-core/src/dummy_cuda_backend.rs index 1fe6ba5d..f5c80fcf 100644 --- a/candle-core/src/dummy_cuda_backend.rs +++ b/candle-core/src/dummy_cuda_backend.rs @@ -39,7 +39,7 @@ impl CudaDevice { Err(Error::NotCompiledWithCudaSupport) } - pub(crate) fn rand_uniform(&self, _: &Shape, _: DType) -> Result<CudaStorage> { + pub(crate) fn rand_uniform(&self, _: &Shape, _: DType, _: f64, _: f64) -> Result<CudaStorage> { Err(Error::NotCompiledWithCudaSupport) } |