File tree 6 files changed +34
-53
lines changed
6 files changed +34
-53
lines changed Original file line number Diff line number Diff line change 1
1
variables :
2
2
CI_IMAGE_TAG : ' plain'
3
3
4
- stages :
5
- - test
6
- - postprocess
7
-
8
4
include :
9
5
- ' https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v1/common.yml'
10
6
- ' https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v1/test_v1.0.yml'
11
7
- ' https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v1/test_dev.yml'
12
8
- ' https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v1/coverage_dev.yml'
13
- - ' https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/dev/documentation_v1.0.yml'
14
9
15
10
test:v1.0 :
16
11
only :
@@ -25,12 +20,6 @@ test:dev:
25
20
- staging
26
21
- trying
27
22
28
- documentation :
29
- only :
30
- - master
31
- - staging
32
- - trying
33
-
34
23
coverage :
35
24
only :
36
25
- master
Original file line number Diff line number Diff line change @@ -23,6 +23,14 @@ branches:
23
23
notifications :
24
24
email : false
25
25
26
- after_success :
27
- - julia -e 'ps=Pkg.PackageSpec(name="Documenter", version="0.19"); Pkg.add(ps); Pkg.pin(ps)'
28
- - julia -e 'cd(Pkg.dir("GPUArrays")); include(joinpath("docs", "make.jl"))'
26
+ jobs :
27
+ include :
28
+ - stage : " Documentation"
29
+ julia : 1.0
30
+ os : linux
31
+ script :
32
+ - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
33
+ Pkg.build();
34
+ Pkg.instantiate()'
35
+ - julia --project=docs/ docs/make.jl
36
+ after_success : skip
Original file line number Diff line number Diff line change 1
1
# GPUArrays
2
2
3
- [ ![ ] ( https://codecov.io/gh/JuliaGPU/GPUArrays.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/JuliaGPU/GPUArrays.jl )
4
- [ ![ ] ( https://img.shields.io/badge/docs-latest-blue.svg )] ( https://JuliaGPU.github.io/GPUArrays.jl/latest )
3
+ * Abstract GPU Array package for Julia's various GPU backends.*
4
+
5
+ [ ![ ] [ docs-stable-img ]] [ docs-stable-url ] [ ![ ] [ docs-dev-img ]] [ docs-dev-url ]
6
+
7
+ [ docs-stable-img ] : https://img.shields.io/badge/docs-stable-blue.svg
8
+ [ docs-stable-url ] : http://JuliaGPU.github.io/GPUArrays.jl/stable
9
+ [ docs-dev-img ] : https://img.shields.io/badge/docs-dev-blue.svg
10
+ [ docs-dev-url ] : http://JuliaGPU.github.io/GPUArrays.jl/dev
5
11
6
12
7
13
[ Benchmarks] ( https://github.com/JuliaGPU/GPUBenchmarks.jl/blob/master/results/results.md )
8
14
9
- Abstract GPU Array package for Julia's various GPU backends.
10
- See it as a Julia Base.AbstractArray for GPUs.
11
- Currently, you either need to install [ CLArrays] ( https://github.com/JuliaGPU/CLArrays.jl ) or [ CuArrays] ( https://github.com/JuliaGPU/CuArrays.jl ) for a concrete implementation.
15
+ This package is the counterpart of Julia's ` Base.AbstractArray ` interface, but
16
+ for GPU arary types. Currently, you either need to install
17
+ [ CLArrays] ( https://github.com/JuliaGPU/CLArrays.jl ) or
18
+ [ CuArrays] ( https://github.com/JuliaGPU/CuArrays.jl ) for a concrete
19
+ implementation.
12
20
13
21
14
22
# Why another GPU array package in yet another language?
Original file line number Diff line number Diff line change 1
1
[deps ]
2
2
Documenter = " e30172f5-a6a5-5a46-863b-614d45cd2de4"
3
-
4
- [compat ]
5
- Documenter = " ~0.19"
Original file line number Diff line number Diff line change 1
1
using Documenter, GPUArrays
2
2
3
- makedocs ()
3
+ makedocs (
4
+ modules = [GPUArrays],
5
+ format = Documenter. HTML (),
6
+ sitename = " GPUArrays.jl" ,
7
+ pages = [
8
+ " Home" => " index.md" ,
9
+ ],
10
+ doctest = true
11
+ )
4
12
5
13
deploydocs (
6
- repo = " github.com/JuliaGPU/GPUArrays.jl.git" ,
7
- julia = " 0.7" ,
8
- osname = " linux" ,
9
- # no need to build anything here, re-use output of `makedocs`
10
- deps = nothing ,
11
- make = nothing ,
14
+ repo = " github.com/JuliaGPU/GPUArrays.jl.git"
12
15
)
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments