summaryrefslogtreecommitdiff
path: root/candle-core/src/device.rs
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2024-08-01 09:48:58 +0100
committerGitHub <noreply@github.com>2024-08-01 10:48:58 +0200
commit1ba87a94505ee52bdd362fd4da11d1ee945ea593 (patch)
tree5f77dd60fac79cdd305074a9e31faac979f3281d /candle-core/src/device.rs
parentbd80078acfe25c15e3f590be4ec68ff8caddcbdd (diff)
downloadcandle-1ba87a94505ee52bdd362fd4da11d1ee945ea593.tar.gz
candle-1ba87a94505ee52bdd362fd4da11d1ee945ea593.tar.bz2
candle-1ba87a94505ee52bdd362fd4da11d1ee945ea593.zip
Use BF16 on metal when possible. (#2378)
Diffstat (limited to 'candle-core/src/device.rs')
-rw-r--r--candle-core/src/device.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/candle-core/src/device.rs b/candle-core/src/device.rs
index 1cd26167..91e56937 100644
--- a/candle-core/src/device.rs
+++ b/candle-core/src/device.rs
@@ -171,6 +171,22 @@ impl Device {
matches!(self, Self::Metal(_))
}
+ pub fn supports_bf16(&self) -> bool {
+ match self {
+ Self::Cuda(_) | Self::Metal(_) => true,
+ Self::Cpu => false,
+ }
+ }
+
+ /// Return `BF16` for devices that support it, otherwise default to `F32`.
+ pub fn bf16_default_to_f32(&self) -> DType {
+ if self.supports_bf16() {
+ DType::BF16
+ } else {
+ DType::F32
+ }
+ }
+
pub fn cuda_if_available(ordinal: usize) -> Result<Self> {
if crate::utils::cuda_is_available() {
Self::new_cuda(ordinal)