From 325d31e3d0f867313a979fa960454db833e58ee5 Mon Sep 17 00:00:00 2001 From: mtfishman Date: Wed, 12 Feb 2025 11:42:47 -0500 Subject: [PATCH 1/5] Add NDTensors and ITensors as downstream tests --- .github/workflows/IntegrationTest.yml | 2 ++ Project.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/IntegrationTest.yml b/.github/workflows/IntegrationTest.yml index f3c0283..4e58067 100644 --- a/.github/workflows/IntegrationTest.yml +++ b/.github/workflows/IntegrationTest.yml @@ -19,6 +19,8 @@ jobs: repo: - 'ITensor/BlockSparseArrays.jl' - 'ITensor/DerivableInterfaces.jl' + - 'ITensor/ITensors.jl' + - 'ITensor/NDTensors.jl' - 'ITensor/NamedDimsArrays.jl' - 'ITensor/TensorAlgebra.jl' - 'ITensor/UnallocatedArrays.jl' diff --git a/Project.toml b/Project.toml index cd5c2ce..2009836 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "TypeParameterAccessors" uuid = "7e5a90cf-f82e-492e-a09b-e3e26432c138" authors = ["ITensor developers and contributors"] -version = "0.3.2" +version = "0.3.3" [deps] LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" From d1756e169c6c3644d522d9d8b1519494cbafa85f Mon Sep 17 00:00:00 2001 From: mtfishman Date: Fri, 14 Feb 2025 14:19:29 -0500 Subject: [PATCH 2/5] Remove NDTensors downstream test for now --- .github/workflows/IntegrationTest.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/IntegrationTest.yml b/.github/workflows/IntegrationTest.yml index 4e58067..b581ca9 100644 --- a/.github/workflows/IntegrationTest.yml +++ b/.github/workflows/IntegrationTest.yml @@ -20,7 +20,6 @@ jobs: - 'ITensor/BlockSparseArrays.jl' - 'ITensor/DerivableInterfaces.jl' - 'ITensor/ITensors.jl' - - 'ITensor/NDTensors.jl' - 'ITensor/NamedDimsArrays.jl' - 'ITensor/TensorAlgebra.jl' - 'ITensor/UnallocatedArrays.jl' From 6c7b6d32c6b8210090c0bf1eb2b10d11e392e541 Mon Sep 17 00:00:00 2001 From: mtfishman Date: Fri, 14 Feb 2025 14:40:20 -0500 Subject: [PATCH 3/5] Try testing NDTensors.jl --- .github/workflows/IntegrationTest.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/IntegrationTest.yml b/.github/workflows/IntegrationTest.yml index b581ca9..df0eb9d 100644 --- a/.github/workflows/IntegrationTest.yml +++ b/.github/workflows/IntegrationTest.yml @@ -20,6 +20,7 @@ jobs: - 'ITensor/BlockSparseArrays.jl' - 'ITensor/DerivableInterfaces.jl' - 'ITensor/ITensors.jl' + - 'ITensor/ITensors.jl:NDTensors' - 'ITensor/NamedDimsArrays.jl' - 'ITensor/TensorAlgebra.jl' - 'ITensor/UnallocatedArrays.jl' From 78ad0c4bf6ad7c18175ca5a1745fc18db787629f Mon Sep 17 00:00:00 2001 From: mtfishman Date: Fri, 14 Feb 2025 15:46:19 -0500 Subject: [PATCH 4/5] Update IntegrationTest syntax --- .github/workflows/IntegrationTest.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/IntegrationTest.yml b/.github/workflows/IntegrationTest.yml index df0eb9d..196e185 100644 --- a/.github/workflows/IntegrationTest.yml +++ b/.github/workflows/IntegrationTest.yml @@ -16,14 +16,14 @@ jobs: name: "IntegrationTest" strategy: matrix: - repo: - - 'ITensor/BlockSparseArrays.jl' - - 'ITensor/DerivableInterfaces.jl' - - 'ITensor/ITensors.jl' - - 'ITensor/ITensors.jl:NDTensors' - - 'ITensor/NamedDimsArrays.jl' - - 'ITensor/TensorAlgebra.jl' - - 'ITensor/UnallocatedArrays.jl' + pkg: + - 'BlockSparseArrays' + - 'DerivableInterfaces' + - 'ITensors' + - 'NDTensors' + - 'NamedDimsArrays' + - 'TensorAlgebra' + - 'UnallocatedArrays' uses: "ITensor/ITensorActions/.github/workflows/IntegrationTest.yml@main" with: localregistry: "https://github.com/ITensor/ITensorRegistry.git" From 4de577b28b319b15f1776b9d5cba2b39629a8db9 Mon Sep 17 00:00:00 2001 From: mtfishman Date: Fri, 14 Feb 2025 15:53:02 -0500 Subject: [PATCH 5/5] Update workflow syntax --- .github/workflows/IntegrationTest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/IntegrationTest.yml b/.github/workflows/IntegrationTest.yml index 196e185..f0a2dc7 100644 --- a/.github/workflows/IntegrationTest.yml +++ b/.github/workflows/IntegrationTest.yml @@ -27,4 +27,4 @@ jobs: uses: "ITensor/ITensorActions/.github/workflows/IntegrationTest.yml@main" with: localregistry: "https://github.com/ITensor/ITensorRegistry.git" - repo: "${{ matrix.repo }}" + pkg: "${{ matrix.pkg }}"