-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
87 additions
and
0 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 @@ | ||
override/ |
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,9 @@ | ||
[[OSQP_CUDA]] | ||
arch = "x86_64" | ||
git-tree-sha1 = "540793cf26ae8466ca7b4822f5c11d164450cde6" | ||
libc = "glibc" | ||
os = "linux" | ||
|
||
[[OSQP_CUDA.download]] | ||
sha256 = "7acebf1eae26841b01b710009600549d85c7d0c4ff02089435fa1c57f450a8a1" | ||
url = "https://github.com/osqp/OSQP_CUDA_jll.jl/releases/download/OSQP_CUDA-v100.0.0+0/OSQP_CUDA.v100.0.0.x86_64-linux-gnu.tar.gz" |
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,13 @@ | ||
name = "OSQP_CUDA_jll" | ||
uuid = "7bc05507-77fc-55d5-a622-fbff6f7abc80" | ||
version = "100.0.0+0" | ||
|
||
[deps] | ||
JLLWrappers = "692b3bcd-3c85-4b1f-b108-f13ce0eb3210" | ||
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f" | ||
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb" | ||
Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33" | ||
|
||
[compat] | ||
JLLWrappers = "1.2.0" | ||
julia = "1.0" |
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,25 @@ | ||
# `OSQP_CUDA_jll.jl` (v100.0.0+0) | ||
|
||
This is an autogenerated package constructed using [`BinaryBuilder.jl`](https://github.com/JuliaPackaging/BinaryBuilder.jl). | ||
|
||
For more details about JLL packages and how to use them, see `BinaryBuilder.jl` [documentation](https://juliapackaging.github.io/BinaryBuilder.jl/dev/jll/). | ||
|
||
## Sources | ||
|
||
The tarballs for `OSQP_CUDA_jll.jl` have been built from these sources: | ||
|
||
* git repository: https://github.com/osqp/osqp.git (revision: `538b7bf39e7aa2aab74c3ab4013218f11f31dfe4`) | ||
* files in directory, relative to originating `build_tarballs.jl`: `./bundled` | ||
|
||
## Platforms | ||
|
||
`OSQP_CUDA_jll.jl` is available for the following platforms: | ||
|
||
* `Linux x86_64 {libc=glibc}` (`x86_64-linux-gnu`) | ||
|
||
## Products | ||
|
||
The code bindings within this package are autogenerated from the following `Products`: | ||
|
||
* `LibraryProduct`: `osqp_cuda_double` | ||
* `LibraryProduct`: `osqp_cuda_single` |
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,9 @@ | ||
# Use baremodule to shave off a few KB from the serialized `.ji` file | ||
baremodule OSQP_CUDA_jll | ||
using Base | ||
using Base: UUID | ||
import JLLWrappers | ||
|
||
JLLWrappers.@generate_main_file_header("OSQP_CUDA") | ||
JLLWrappers.@generate_main_file("OSQP_CUDA", UUID("7bc05507-77fc-55d5-a622-fbff6f7abc80")) | ||
end # module OSQP_CUDA_jll |
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 @@ | ||
# Autogenerated wrapper script for OSQP_CUDA_jll for x86_64-linux-gnu | ||
export osqp_cuda_double, osqp_cuda_single | ||
|
||
JLLWrappers.@generate_wrapper_header("OSQP_CUDA") | ||
JLLWrappers.@declare_library_product(osqp_cuda_double, "libosqp_cuda_double.so") | ||
JLLWrappers.@declare_library_product(osqp_cuda_single, "libosqp_cuda_single.so") | ||
function __init__() | ||
JLLWrappers.@generate_init_header() | ||
JLLWrappers.@init_library_product( | ||
osqp_cuda_double, | ||
"lib/libosqp_cuda_double.so", | ||
RTLD_LAZY | RTLD_DEEPBIND, | ||
) | ||
|
||
JLLWrappers.@init_library_product( | ||
osqp_cuda_single, | ||
"lib/libosqp_cuda_single.so", | ||
RTLD_LAZY | RTLD_DEEPBIND, | ||
) | ||
|
||
JLLWrappers.@generate_init_footer() | ||
end # __init__() |