Skip to content

Commit

Permalink
Merge pull request #16 from GianlucaFuwa/gpu
Browse files Browse the repository at this point in the history
GPU support (Only tested on a CUDA machine)
  • Loading branch information
GianlucaFuwa authored Mar 31, 2024
2 parents 971df6b + abbc3c8 commit f3d6217
Show file tree
Hide file tree
Showing 101 changed files with 4,451 additions and 1,801 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Documentation

on:
push:
branches: [gpu] # update to match your development branch (master, main, dev, trunk, ...)
tags: ["*"]
pull_request:

jobs:
build:
permissions:
contents: write
statuses: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
version: "1.9.4"
- uses: julia-actions/cache@v1
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
run: julia --project=docs/ docs/make.jl
21 changes: 8 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
alloc-profile.pb.gz
/logs/
/measurements/
/metapotentials/
Expand All @@ -7,15 +6,11 @@ alloc-profile.pb.gz
/test/logger.jl
/test/test_JET.jl
.vscode/
run.jl
/src/dirac/
/src/mpi/mpitest.jl
/src/system/mainrun_mpi.jl
LocalPreferences.toml
stability.jl
/src/utils/algebra.jl
plot.jl
plot_opes.jl
.VSCodeCounter/
/test/test_AD.jl
/test/testsmearing.jl
*.jl.*.cov
*.jl.cov
*.jl.mem
/Manifest.toml
/docs/build/
*~
*#*
*#*#
Loading

0 comments on commit f3d6217

Please sign in to comment.