diff options
| author | Christoph Groth <christoph.groth@cea.fr> | 2024-11-12 18:11:43 +0100 |
|---|---|---|
| committer | Christoph Groth <christoph.groth@cea.fr> | 2025-01-09 13:58:20 +0100 |
| commit | d2a3abaa44f49c45f4f6cc74e00493c86e963b4e (patch) | |
| tree | 1b07cb4dcfd772ed022091316c0a6052471803f2 | |
| parent | e39d3089b5b1a8583c6750bedaf639de73cf0316 (diff) | |
Catch up with upstream
| -rw-r--r-- | Cargo.lock | 2 | ||||
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | src/main.rs | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -5,7 +5,7 @@ version = 3 [[package]] name = "mdarray" version = "0.6.1" -source = "git+https://github.com/fre-hu/mdarray.git?rev=b93aaa58b8b0139f4058247df04f9cf765e0717d#b93aaa58b8b0139f4058247df04f9cf765e0717d" +source = "git+https://github.com/fre-hu/mdarray.git?rev=272f1ff78f7ff82e184cf682c0ea831d7ee11ba3#272f1ff78f7ff82e184cf682c0ea831d7ee11ba3" [[package]] name = "mdarray-test" @@ -4,4 +4,4 @@ version = "0.1.0" edition = "2021" [dependencies] -mdarray = { git = "https://github.com/fre-hu/mdarray.git", rev = "b93aaa58b8b0139f4058247df04f9cf765e0717d" } +mdarray = { git = "https://github.com/fre-hu/mdarray.git", rev = "272f1ff78f7ff82e184cf682c0ea831d7ee11ba3" } diff --git a/src/main.rs b/src/main.rs index 70bb8a8..87a6477 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,4 @@ -use mdarray::{view, array, tensor, Slice, Expression, Dim, Const, Dyn}; +use mdarray::{view, array, tensor, Slice, Dim, Const, Dyn, expr::Expression}; // Indexing convention: C_ij <- A_ik * B_kj fn matmul<D0: Dim, D1: Dim, D2: Dim>( |
