diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-08-18 16:30:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-18 16:30:53 +0100 |
commit | cb069d606323cec02c6bf54185c2fbfffffd4bdf (patch) | |
tree | 4af8c5d82a7a8820a82db1ea3fcfad770802c6c1 /candle-core/src/op.rs | |
parent | 4f1541526cd52e7da356c26a2752bb187ca38e0b (diff) | |
download | candle-cb069d606323cec02c6bf54185c2fbfffffd4bdf.tar.gz candle-cb069d606323cec02c6bf54185c2fbfffffd4bdf.tar.bz2 candle-cb069d606323cec02c6bf54185c2fbfffffd4bdf.zip |
Add the permute op (similar to pytorch). (#504)
* Add the permute op (similar to pytorch).
* Add the backprop for dimension permutation.
Diffstat (limited to 'candle-core/src/op.rs')
-rw-r--r-- | candle-core/src/op.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/candle-core/src/op.rs b/candle-core/src/op.rs index cf99f86e..81ee8d59 100644 --- a/candle-core/src/op.rs +++ b/candle-core/src/op.rs @@ -117,6 +117,7 @@ pub enum Op { Reshape(Tensor), ToDevice(Tensor), Transpose(Tensor, usize, usize), + Permute(Tensor, Vec<usize>), Elu(Tensor, f64), CustomOp1(Tensor, std::sync::Arc<Box<dyn CustomOp1 + Send + Sync>>), CustomOp2( |