Skip to content

Commit

Permalink
Update Project.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Dec 3, 2023
1 parent 2753dc6 commit d3fe24a
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 5 deletions.
14 changes: 11 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,19 @@ version = "0.1.0"
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
CUDSS_jll = "4889d778-9329-5762-9fec-0578a5d30366"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"

[compat]
CEnum = "0.4"
CUDA = "5"
julia = "1.6"
LinearAlgebra = "1.6"
SparseArrays = "1.6"
Test = "1.6"

[extras]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
test = ["LinearAlgebra", "SparseArrays", "Test"]
6 changes: 6 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
CUDSS = "45b445bb-4962-46a0-9369-b4df9d0f772e"

[compat]
Documenter = "1.0"
18 changes: 18 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
using Documenter, CUDSS

makedocs(
modules = [CUDSS],
doctest = true,
linkcheck = true,
format = Documenter.HTML(ansicolor = true,
prettyurls = get(ENV, "CI", nothing) == "true",
collapselevel = 1),
sitename = "CUDSS.jl",
pages = ["Home" => "index.md"]
)

deploydocs(
repo = "github.com/exanauts/CUDSS.jl.git",
push_preview = true,
devbranch = "main",
)
9 changes: 9 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# [CUDSS.jl documentation](@id Home)

## Installation

```julia
julia> ]
pkg> add https://github.com/exanauts/CUDSS.jl.git
pkg> test CUDSS
```
2 changes: 0 additions & 2 deletions src/CUDSS.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module CUDSS

using CUDA, CUDA.CUSPARSE
using LinearAlgebra
using SparseArrays
using CUDSS_jll

import CUDA: @checked, libraryPropertyType, cudaDataType, initialize_context, retry_reclaim, CUstream
Expand Down

0 comments on commit d3fe24a

Please sign in to comment.