summaryrefslogtreecommitdiff
path: root/candle-transformers
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-transformers
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-transformers')
-rw-r--r--candle-transformers/src/models/phi.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-transformers/src/models/phi.rs b/candle-transformers/src/models/phi.rs
index 2c7fccef..3f8d92b9 100644
--- a/candle-transformers/src/models/phi.rs
+++ b/candle-transformers/src/models/phi.rs
@@ -72,7 +72,7 @@ impl RotaryEmbedding {
let (xs1, xs2) = (&xs12[0], &xs12[1]);
let c = self.cos.narrow(0, seqlen_offset, seq_len)?;
let s = self.sin.narrow(0, seqlen_offset, seq_len)?;
- let rotate_half = Tensor::cat(&[&xs2.neg()?, &xs1], D::Minus1)?;
+ let rotate_half = Tensor::cat(&[&xs2.neg()?, xs1], D::Minus1)?;
let xs_rot = (xs_rot.broadcast_mul(&c)? + rotate_half.broadcast_mul(&s)?)?;
Tensor::cat(&[&xs_rot, &xs_pass], D::Minus1)
}