File tree Expand file tree Collapse file tree 3 files changed +25
-11
lines changed Expand file tree Collapse file tree 3 files changed +25
-11
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
2
on :
3
- - push
4
- - pull_request
3
+ pull_request :
4
+ branches :
5
+ - master
6
+ push :
7
+ branches :
8
+ - master
5
9
jobs :
6
10
test :
7
11
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
11
15
matrix :
12
16
version :
13
17
- ' 1.6'
14
- - ' nightly '
18
+ - ' 1 '
15
19
os :
16
20
- ubuntu-latest
17
21
arch :
56
60
using Documenter: DocMeta, doctest
57
61
using OperatorLearning
58
62
DocMeta.setdocmeta!(OperatorLearning, :DocTestSetup, :(using OperatorLearning); recursive=true)
59
- doctest(OperatorLearning)'
63
+ doctest(OperatorLearning)'
Original file line number Diff line number Diff line change @@ -7,21 +7,21 @@ version = "0.2.1"
7
7
CUDA = " 052768ef-5323-5732-b1bb-66c8b64840ba"
8
8
FFTW = " 7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
9
9
Flux = " 587475ba-b771-5e3f-ad9e-33799f191a9c"
10
- MAT = " 23992714-dd62-5051-b70f-ba57cb901cac"
11
10
NNlib = " 872c559c-99b0-510c-b3b7-b6c96a88d5cd"
12
11
OMEinsum = " ebe7aa44-baf0-506c-a96f-8464559b3922"
13
- PkgTemplates = " 14b8a8f1-9102-5b29-a752-f990bacb7fe1"
14
12
Random = " 9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
15
- Revise = " 295af30f-e4ad-537b-8983-00126c2a3abe"
16
- Test = " 8dfed614-e22c-5e08-85e1-65c5234f0b40"
17
13
18
14
[compat ]
19
15
CUDA = " 3"
20
16
FFTW = " 1"
21
17
Flux = " 0.12"
22
- MAT = " 0.10"
23
18
NNlib = " 0.8"
24
19
OMEinsum = " 0.6"
25
- PkgTemplates = " 0.7"
26
- Revise = " 3"
27
20
julia = " 1.6"
21
+
22
+ [extras ]
23
+ Pkg = " 44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
24
+ Test = " 8dfed614-e22c-5e08-85e1-65c5234f0b40"
25
+
26
+ [targets ]
27
+ test = [" Pkg" , " Test" ]
Original file line number Diff line number Diff line change
1
+ using Pkg
2
+ const LONGER_TESTS = false
3
+ const GROUP = get (ENV , " GROUP" , " All" )
4
+
1
5
using OperatorLearning
2
6
using Test
3
7
using Random
4
8
5
9
Random. seed! (0 )
6
10
11
+ if GROUP == " All" || GROUP == " Core"
7
12
@testset " FourierLayer" begin
8
13
include (" fourierlayer.jl" )
9
14
end
15
20
@testset " Weights" begin
16
21
include (" complexweights.jl" )
17
22
end
23
+ end
24
+
25
+ if GROUP == " GPU"
26
+ # Add GPU Tests Here
27
+ end
You can’t perform that action at this time.
0 commit comments