Permute operation storage transformation
Rearranges tensor dimensions according to the specified axes order. Each axis index must appear exactly once.
type A = TensorStorage<Float32, [2, 3, 4]>; // Shape: [2, 3, 4]type B = PermuteOp<A, [2, 0, 1]>; // Shape: [4, 2, 3]type C = PermuteOp<A, [1, 0, 2]>; // Shape: [3, 2, 4] Copy
type A = TensorStorage<Float32, [2, 3, 4]>; // Shape: [2, 3, 4]type B = PermuteOp<A, [2, 0, 1]>; // Shape: [4, 2, 3]type C = PermuteOp<A, [1, 0, 2]>; // Shape: [3, 2, 4]
Permute operation storage transformation
Rearranges tensor dimensions according to the specified axes order. Each axis index must appear exactly once.