Skip to content

Commit

Permalink
Merge branch 'devel' into tensorwrap
Browse files Browse the repository at this point in the history
  • Loading branch information
jcosborn committed Nov 14, 2024
2 parents f155919 + ffaa951 commit e2687c2
Show file tree
Hide file tree
Showing 6 changed files with 1,826 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@ name: test
on:
pull_request:
push:
branches:
- 'devel'
- 'master'
- 'tensorwrap'
# branches:
# - 'devel'
# - 'master'

jobs:
build:
Expand Down
6 changes: 5 additions & 1 deletion src/bench/benchStagProp.nim
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@ var v1 = lo.ColorVector()
var v2 = lo.ColorVector()
var r = lo.ColorVector()
var rs = newRNGField(RngMilc6, lo, intParam("seed", 987654321).uint64)
let warm0 = 0.29 + 500.0/lo.physVol.float
var warm = floatParam("warm", warm0)
threads:
g.random rs
#g.random rs
g.warm warm, rs
g.setBC
g.stagPhase
v1 := 0
Expand Down Expand Up @@ -67,6 +70,7 @@ for i in 0..3:
g3[2*i] = g[i]
g3[2*i+1] = lo.ColorMatrix()
g3[2*i+1].randomSU rs
g3[2*i+1] *= 0.1
var s3 = newStag3(g3)
#s3.D(v2, v1, m)
s3.solve(v2, v1, mass, sp)
Expand Down
Loading

0 comments on commit e2687c2

Please sign in to comment.