summaryrefslogtreecommitdiff
path: root/candle-nn
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2024-05-03 11:17:05 +0200
committerGitHub <noreply@github.com>2024-05-03 11:17:05 +0200
commit89f53b9d7b36bbc0f555cd3c9882d21f84b2e13f (patch)
tree5952c781ed2c09ed81073ef637ed98a2ae5209d7 /candle-nn
parenta09d451d11a91ea7a7feaa40460abb282581a0f1 (diff)
downloadcandle-89f53b9d7b36bbc0f555cd3c9882d21f84b2e13f.tar.gz
candle-89f53b9d7b36bbc0f555cd3c9882d21f84b2e13f.tar.bz2
candle-89f53b9d7b36bbc0f555cd3c9882d21f84b2e13f.zip
Bump the version number to 0.5.1. (#2155)
* Bump the version number to 0.5.1. * Fix clippy lints for 1.78. * More clippy fixes.
Diffstat (limited to 'candle-nn')
-rw-r--r--candle-nn/src/var_builder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-nn/src/var_builder.rs b/candle-nn/src/var_builder.rs
index 5539370a..68bd6f05 100644
--- a/candle-nn/src/var_builder.rs
+++ b/candle-nn/src/var_builder.rs
@@ -264,7 +264,7 @@ impl SimpleBackend for VarMap {
}
}
-struct SafeTensorWithRouting<'a> {
+pub struct SafeTensorWithRouting<'a> {
routing: HashMap<String, usize>,
safetensors: Vec<SafeTensors<'a>>,
}