heterogeneity (#27)

Prepare things to work with heterogeneity, make things work on GPU

Reviewed-on: Rubydragon/MetagraphOptimization.jl#27
Co-authored-by: Anton Reinhard <anton.reinhard@proton.me>
Co-committed-by: Anton Reinhard <anton.reinhard@proton.me>
This commit is contained in:
2023-12-18 14:31:52 +01:00
committed by Anton Reinhard
parent c90346e948
commit 92e0eeaaef
42 changed files with 1631 additions and 238 deletions

View File

@ -22,7 +22,9 @@ jobs:
version: '1.9.2'
- name: Instantiate
run: julia --project=./ -e 'using Pkg; Pkg.instantiate()'
run: |
julia --project=./ -e 'using Pkg; Pkg.instantiate()'
julia --project=./ -e 'using Pkg; Pkg.add(url="https://github.com/QEDjl-project/QEDprocesses.jl/")'
- name: Format check
run: |
@ -32,7 +34,7 @@ jobs:
if out == ""
exit(0)
else
@error "Some files have not been formatted !!!"
@error "Some files have not been formatted!!!"
write(stdout, out)
exit(1)
end'