-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix error in BieglerKKTSystem's solve for nontrivial scaling (#71)
* replace ArgosCUDA using package extensions * CI: set explicitly CUDA 11.8 for runtime * move CI to Julia 1.9 * add specific workflow for CI * Making codecov strictly informative --------- Co-authored-by: Michel Schanen <[email protected]>
- Loading branch information
1 parent
e81bbbd
commit 80d680d
Showing
18 changed files
with
145 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[compat] | ||
CUDA = "4.1, 5" | ||
FiniteDiff = "2.7" | ||
Ipopt = "1" | ||
MadNLP = "0.7" | ||
|
||
[deps] | ||
Argos = "ef244971-cf80-42b0-9762-2c2c832df5d5" | ||
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" | ||
CUSOLVERRF = "a8cc9031-bad2-4722-94f5-40deabb4245c" | ||
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab" | ||
ExaPF = "0cf0e50c-a82e-488f-ac7e-41ffdff1b8aa" | ||
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41" | ||
Ipopt = "b6b21f68-93f8-5de0-b562-5493be1d77c9" | ||
KernelAbstractions = "63c18a36-062a-441e-b654-da1e3ab1ce7c" | ||
LazyArtifacts = "4af54fe1-eca0-43a8-85a7-787d91b784e3" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
MadNLP = "2621e9c9-9eb4-46b1-8089-e8c72242dfb6" | ||
MadNLPGPU = "d72a61cc-809d-412f-99be-fd81f4b8a598" | ||
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[extras] | ||
CUDA_Runtime_jll = "76a88914-d11a-5bdc-97e0-2f5a05c973a2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
using Pkg | ||
Pkg.instantiate() | ||
|
||
using CUDA | ||
|
||
argos_path = joinpath(@__DIR__, "..") | ||
Pkg.develop(path=argos_path) | ||
|
||
CUDA.set_runtime_version!(v"11.8") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
informational: true | ||
patch: | ||
default: | ||
informational: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ExaData] | ||
git-tree-sha1 = "fc4d4283fe5bd2327fb1504317feb645a8421f7c" | ||
lazy = true | ||
[[ExaData.download]] | ||
url = "https://web.cels.anl.gov/~mschanen/ExaData-d235e24.tar.gz" | ||
sha256 = "86771527a71bba9add90fb14b3bb65da58c021cf55325159aa04f7149f4874e5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[deps] | ||
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" | ||
CUSOLVERRF = "a8cc9031-bad2-4722-94f5-40deabb4245c" | ||
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab" | ||
ExaPF = "0cf0e50c-a82e-488f-ac7e-41ffdff1b8aa" | ||
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41" | ||
Ipopt = "b6b21f68-93f8-5de0-b562-5493be1d77c9" | ||
KernelAbstractions = "63c18a36-062a-441e-b654-da1e3ab1ce7c" | ||
LazyArtifacts = "4af54fe1-eca0-43a8-85a7-787d91b784e3" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
MadNLP = "2621e9c9-9eb4-46b1-8089-e8c72242dfb6" | ||
MadNLPGPU = "d72a61cc-809d-412f-99be-fd81f4b8a598" | ||
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[compat] | ||
CUDA = "4.1, 5" | ||
FiniteDiff = "2.7" | ||
Ipopt = "1" | ||
MadNLP = "0.7" |
Oops, something went wrong.