Skip to content

Commit

Permalink
Add a workflow with Aqua.jl (#289)
Browse files Browse the repository at this point in the history
* Add a workflow with Aqua.jl
* Remove undefined exported symbols
* Add a compat entry for AMDGPU.jl
  • Loading branch information
amontoison authored Dec 7, 2023
1 parent 0ce95bc commit 34cb0d2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/Aqua.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Aqua
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@latest
with:
version: '1'
- name: Aqua.jl
run: julia --color=yes -e 'using Pkg; Pkg.add("Aqua"); Pkg.develop(path="."); using Aqua, ExaPF; Aqua.test_all(ExaPF, ambiguities=false); Aqua.test_ambiguities(ExaPF)'
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ ExaPFCUDAExt = "CUDA"

[compat]
Adapt = "3.3"
AMDGPU = "0.8"
CUDA = "4.1, 5"
ForwardDiff = "0.10"
KernelAbstractions = "0.9"
Expand Down
4 changes: 2 additions & 2 deletions src/LinearSolvers/LinearSolvers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ using KrylovPreconditioners
const KA = KernelAbstractions
const KP = KrylovPreconditioners

export bicgstab, list_solvers, default_linear_solver
export DirectSolver, BICGSTAB, EigenBICGSTAB, Bicgstab
export list_solvers, default_linear_solver
export DirectSolver, Bicgstab
export do_scaling, scaling!

@enum(
Expand Down

0 comments on commit 34cb0d2

Please sign in to comment.