forked from CFT-HY/HILA
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'surface_twist_fluctuation' of github.com:CFT-HY/HILA in…
…to surface_twist_fluctuation
- Loading branch information
Showing
78 changed files
with
4,900 additions
and
1,537 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,7 @@ docs/latex/ | |
docs/html/* | ||
!docs/html/images/ | ||
latex/ | ||
html/ | ||
html/ | ||
.vs/slnx.sqlite | ||
*config* | ||
*run_status |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
|
||
# Following line(s) are printed with "make help". Use columns 8 and 30 | ||
#% make [suN_gauge_gf] - build suN_gauge_gf program | ||
#% suN_gauge_gf make options | ||
#% NCOL=<N> - SU(N) gauge simulation program (default: 3) | ||
#% SUN_OVERRELAX_dFJ=1 - use deForcrand-Jahn full overrelax (default: su2 subgroups) | ||
#% GFLOWS=<K> - Gauge action for gradient flow: | ||
#% K=0: "WILSON" | ||
#% K=1: "Bulk-Prevention" | ||
#% K=2: "Luscher-Weisz" | ||
#% K=3: "IWASAKI" (default) | ||
#% K=4: "DBW2" | ||
|
||
# Give the location of the top level distribution directory wrt. this location. | ||
# Can be absolute or relative | ||
HILA_DIR := ../.. | ||
|
||
# Number of colors | ||
NCOL := 3 | ||
|
||
# Gauge action for gradient flow update: | ||
# "WILSON": 0, "BP": 1, "LW": 2, "IWASAKI": 3, "DBW2": 4 | ||
GFLOWS := 3 | ||
|
||
|
||
ifndef ARCH | ||
ARCH := vanilla | ||
endif | ||
|
||
# Set default goal and arch | ||
.DEFAULT_GOAL := suN_gauge_gf | ||
|
||
# Read in the main makefile contents, incl. platforms | ||
include $(HILA_DIR)/libraries/main.mk | ||
|
||
#HILAPP_OPTS += -insert-includes | ||
#HILAPP_OPTS += -comment-pragmas | ||
HILAPP_OPTS += -check-init | ||
|
||
APP_OPTS += -DNDIM=4 -DNCOLOR=${NCOL} -DGFLOWACTION=${GFLOWS} | ||
|
||
ifdef SUN_OVERRELAX_dFJ | ||
APP_OPTS += -DSUN_OVERRELAX_dFJ | ||
endif | ||
|
||
# With multiple targets we want to use "make target", not "make build/target". | ||
# This is needed to carry the dependencies to build-subdir | ||
|
||
suN_gauge_gf: build/su${NCOL}_gauge_gf_fs${GFLOWS}_${ARCH} ; @: | ||
|
||
# Now the linking step for each target executable | ||
build/su${NCOL}_gauge_gf_fs${GFLOWS}_${ARCH}: Makefile build/suN_gauge_gf.o $(HILA_OBJECTS) $(HEADERS) | ||
$(LD) -o $@ build/suN_gauge_gf.o $(HILA_OBJECTS) $(LDFLAGS) $(LDLIBS) | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# This is a parameter file for SUN_gauge_gf | ||
|
||
lattice size 12,12,12,12 | ||
beta 6. | ||
number of trajectories 302 | ||
updates in trajectory 1 | ||
overrelax steps 4 | ||
thermalization trajs 50 | ||
gflow freq 100 | ||
gflow max lambda 12. | ||
gflow lambda step 0.1 | ||
gflow abs. accuracy 1.0e-5 | ||
gflow rel. accuracy 1.0e-5 | ||
random seed 0 | ||
trajs/saved 200 | ||
config name config |
Oops, something went wrong.