|
42 | 42 | const REACTANT_TEST_GROUP = lowercase(get(ENV, "REACTANT_TEST_GROUP", "all")) |
43 | 43 |
|
44 | 44 | @testset "Reactant.jl Tests" begin |
45 | | - if REACTANT_TEST_GROUP == "all" || REACTANT_TEST_GROUP == "core" |
46 | | - @safetestset "Layout" include("layout.jl") |
47 | | - @safetestset "Tracing" include("tracing.jl") |
48 | | - @safetestset "Basic" include("basic.jl") |
49 | | - @safetestset "Autodiff" include("autodiff.jl") |
50 | | - @safetestset "Complex" include("complex.jl") |
51 | | - @safetestset "Broadcast" include("bcast.jl") |
52 | | - @safetestset "Struct" include("struct.jl") |
53 | | - @safetestset "Closure" include("closure.jl") |
54 | | - @safetestset "Compile" include("compile.jl") |
55 | | - @safetestset "Buffer Donation" include("buffer_donation.jl") |
56 | | - @safetestset "Shortcuts to MLIR ops" include("ops.jl") |
57 | | - @safetestset "Wrapped Arrays" include("wrapped_arrays.jl") |
58 | | - @safetestset "Control Flow" include("control_flow.jl") |
59 | | - @safetestset "Linear Algebra" include("linear_algebra.jl") |
60 | | - end |
| 45 | + #if REACTANT_TEST_GROUP == "all" || REACTANT_TEST_GROUP == "core" |
| 46 | + @safetestset "CUDA" include("cuda.jl") |
| 47 | + # @safetestset "Layout" include("layout.jl") |
| 48 | + # @safetestset "Tracing" include("tracing.jl") |
| 49 | + # @safetestset "Basic" include("basic.jl") |
| 50 | + # @safetestset "Autodiff" include("autodiff.jl") |
| 51 | + # @safetestset "Complex" include("complex.jl") |
| 52 | + # @safetestset "Broadcast" include("bcast.jl") |
| 53 | + # @safetestset "Struct" include("struct.jl") |
| 54 | + # @safetestset "Closure" include("closure.jl") |
| 55 | + # @safetestset "Compile" include("compile.jl") |
| 56 | + # @safetestset "Buffer Donation" include("buffer_donation.jl") |
| 57 | + # @safetestset "Shortcuts to MLIR ops" include("ops.jl") |
| 58 | + # @safetestset "Wrapped Arrays" include("wrapped_arrays.jl") |
| 59 | + # @safetestset "Control Flow" include("control_flow.jl") |
| 60 | + # @safetestset "Linear Algebra" include("linear_algebra.jl") |
| 61 | + # end |
61 | 62 |
|
62 | | - if REACTANT_TEST_GROUP == "all" || REACTANT_TEST_GROUP == "integration" |
63 | | - @safetestset "AbstractFFTs" include("integration/fft.jl") |
64 | | - end |
| 63 | + # if REACTANT_TEST_GROUP == "all" || REACTANT_TEST_GROUP == "integration" |
| 64 | + # @safetestset "AbstractFFTs" include("integration/fft.jl") |
| 65 | + # end |
65 | 66 |
|
66 | | - if REACTANT_TEST_GROUP == "all" || REACTANT_TEST_GROUP == "neural_networks" |
67 | | - @testset "Neural Networks" begin |
68 | | - @safetestset "NNlib Primitives" include("nn/nnlib.jl") |
69 | | - @safetestset "Flux.jl Integration" include("nn/flux.jl") |
70 | | - if Sys.islinux() |
71 | | - @safetestset "LuxLib Primitives" include("nn/luxlib.jl") |
72 | | - @safetestset "Lux Integration" include("nn/lux.jl") |
73 | | - end |
74 | | - end |
75 | | - end |
| 67 | + # if REACTANT_TEST_GROUP == "all" || REACTANT_TEST_GROUP == "neural_networks" |
| 68 | + # @testset "Neural Networks" begin |
| 69 | + # @safetestset "NNlib Primitives" include("nn/nnlib.jl") |
| 70 | + # @safetestset "Flux.jl Integration" include("nn/flux.jl") |
| 71 | + # if Sys.islinux() |
| 72 | + # @safetestset "LuxLib Primitives" include("nn/luxlib.jl") |
| 73 | + # @safetestset "Lux Integration" include("nn/lux.jl") |
| 74 | + # end |
| 75 | + # end |
| 76 | + # end |
76 | 77 | end |
0 commit comments