summaryrefslogtreecommitdiff
path: root/candle-core/src/op.rs
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2023-08-18 16:30:53 +0100
committerGitHub <noreply@github.com>2023-08-18 16:30:53 +0100
commitcb069d606323cec02c6bf54185c2fbfffffd4bdf (patch)
tree4af8c5d82a7a8820a82db1ea3fcfad770802c6c1 /candle-core/src/op.rs
parent4f1541526cd52e7da356c26a2752bb187ca38e0b (diff)
downloadcandle-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.rs1
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(