Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ jobs:
fail-fast: false
matrix:
group:
- All
- Core
- InterfaceI
version:
- '1' # Latest Release
- '~1.6' # Current LTS
Expand Down
7 changes: 6 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function activate_gpu_env()
Pkg.instantiate()
end

if GROUP == "All"
if GROUP == "Core" || GROUP == "All"
@time @safetestset "Exact coloring via contraction" begin include("test_contraction.jl") end
@time @safetestset "Greedy distance-1 coloring" begin include("test_greedy_d1.jl") end
@time @safetestset "Greedy star coloring" begin include("test_greedy_star.jl") end
Expand All @@ -25,6 +25,11 @@ if GROUP == "All"
@time @safetestset "AD using colorvec vector" begin include("test_ad.jl") end
end

if GROUP == "InterfaceI" || GROUP == "All"
@time @safetestset "Jac Vecs and Hes Vecs" begin include("test_jaches_products.jl") end
@time @safetestset "Vec Jac Products" begin include("test_vecjac_products.jl") end
end

if GROUP == "GPU"
activate_gpu_env()
@time @safetestset "GPU AD" begin include("test_gpu_ad.jl") end
Expand Down