From 648f2f9da5c4b4079e576c80cac02e5b277b52d5 Mon Sep 17 00:00:00 2001 From: Daniel Kool Date: Mon, 26 Jun 2023 18:38:30 -0500 Subject: [PATCH 1/3] Update TransmuteDoms dep to 0.1.15 --- Project.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index ccde28c..7dee540 100644 --- a/Project.toml +++ b/Project.toml @@ -20,8 +20,7 @@ LazyArrays = "0.21, 0.22" LazyStack = "0.1.0" MacroTools = "0.5" StaticArrays = "1.3" -Strided = "1.1" -TransmuteDims = "0.1.13" +TransmuteDims = "0.1.15" julia = "1.6" [extras] From 4ae4d43b82c77a72076c35b730be3a35bb61c2a6 Mon Sep 17 00:00:00 2001 From: Daniel Kool Date: Mon, 26 Jun 2023 22:39:39 -0500 Subject: [PATCH 2/3] Updated compats --- Project.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Project.toml b/Project.toml index 7dee540..456b30f 100644 --- a/Project.toml +++ b/Project.toml @@ -14,14 +14,14 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" TransmuteDims = "24ddb15e-299a-5cc3-8414-dbddc482d9ca" [compat] -ChainRulesCore = "1.11" -Compat = "3.46, 4.2" # for stack -LazyArrays = "0.21, 0.22" -LazyStack = "0.1.0" +ChainRulesCore = "1.16" +Compat = "3.46, 4.2, 4.7" # for stack +LazyArrays = "1.1" +LazyStack = "0.1.1" MacroTools = "0.5" -StaticArrays = "1.3" +StaticArrays = "1.5" TransmuteDims = "0.1.15" -julia = "1.6" +julia = "1" [extras] Einsum = "b7d42ee7-0b51-5a75-98ca-779d3107e4c0" From ef1fc5f337fbaeb3388d9c285bd63be0c5619fb7 Mon Sep 17 00:00:00 2001 From: Daniel Kool Date: Mon, 26 Jun 2023 22:46:32 -0500 Subject: [PATCH 3/3] Fast module TensorCast import change --- src/TensorCast.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TensorCast.jl b/src/TensorCast.jl index ae487a3..3de8e9f 100644 --- a/src/TensorCast.jl +++ b/src/TensorCast.jl @@ -25,7 +25,7 @@ include("macro.jl") include("pretty.jl") module Fast # shield non-macro code from @optlevel 1 - using ..TensorCast: pretty + using TensorCast: pretty using LinearAlgebra, StaticArrays include("slice.jl")