Skip to content

Commit

Permalink
OSQP_CUDA_jll build 100.0.0+0
Browse files Browse the repository at this point in the history
  • Loading branch information
imciner2 committed Aug 1, 2022
1 parent 25f66c5 commit 6da6a65
Show file tree
Hide file tree
Showing 7 changed files with 87 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
override/
9 changes: 9 additions & 0 deletions Artifacts.toml
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"
8 changes: 8 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
The Julia source code within this repository (all files under `src/`) are
released under the terms of the MIT "Expat" License, the text of which is
included below. This license does not apply to the binary package wrapped by
this Julia package and automatically downloaded by the Julia package manager
upon installing this wrapper package. The binary package's license is shipped
alongside the binary itself and can be found within the
`share/licenses/OSQP_CUDA` directory within its prefix.

MIT License

Copyright (c) 2022 OSQP
Expand Down
13 changes: 13 additions & 0 deletions Project.toml
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"
25 changes: 25 additions & 0 deletions README.md
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`
9 changes: 9 additions & 0 deletions src/OSQP_CUDA_jll.jl
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
22 changes: 22 additions & 0 deletions src/wrappers/x86_64-linux-gnu.jl
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__()

0 comments on commit 6da6a65

Please sign in to comment.