diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-07-15 08:25:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-15 08:25:15 +0100 |
commit | 66750f98271dc852464d55689ca2d29f04f3fa34 (patch) | |
tree | 00fb0c302205dcddd97e58d674c2198f837d3f8b /candle-examples/src | |
parent | 2ddda706bde9936cbc8f90142ed4acc43390904e (diff) | |
download | candle-66750f98271dc852464d55689ca2d29f04f3fa34.tar.gz candle-66750f98271dc852464d55689ca2d29f04f3fa34.tar.bz2 candle-66750f98271dc852464d55689ca2d29f04f3fa34.zip |
Add some 'cuda-if-available' helper function. (#172)
Diffstat (limited to 'candle-examples/src')
-rw-r--r-- | candle-examples/src/lib.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/candle-examples/src/lib.rs b/candle-examples/src/lib.rs index 8b137891..285aee04 100644 --- a/candle-examples/src/lib.rs +++ b/candle-examples/src/lib.rs @@ -1 +1,13 @@ +use candle::{Device, Result}; +pub fn device(cpu: bool) -> Result<Device> { + if cpu { + Ok(Device::Cpu) + } else { + let device = Device::cuda_if_available(0)?; + if !device.is_cuda() { + println!("Running on CPU, to run on GPU, build this example with `--features cuda`"); + } + Ok(device) + } +} |