First commit with layout for Latttice GPU code

This commit is contained in:
Alberto Ramos 2021-07-13 22:12:55 +02:00
commit 5bb4f28c8b
9 changed files with 747 additions and 0 deletions

25
src/YM/YM.jl Normal file
View file

@ -0,0 +1,25 @@
###
### "THE BEER-WARE LICENSE":
### Alberto Ramos wrote this file. As long as you retain this
### notice you can do whatever you want with this stuff. If we meet some
### day, and you think this stuff is worth it, you can buy me a beer in
### return. <alberto.ramos@cern.ch>
###
### file: YM.jl
### created: Mon Jul 12 16:23:51 2021
###
module YM
struct GaugeParm
beta::Float64
cG::Tuple{Float64,Float64}
end
export GaugeParm
include("YMact.jl")
export krnl_plaq!
end