Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
FerFlow.jl
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Fernando Pérez Panadero
FerFlow.jl
Commits
c8237fcf
Commit
c8237fcf
authored
6 months ago
by
Fernando Pérez Panadero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added max cnfg run adn output tzero
parent
bfeeccb5
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
10 deletions
+28
-10
input/FerFlow.in
input/FerFlow.in
+11
-10
main.jl
main.jl
+2
-0
src/io.jl
src/io.jl
+1
-0
src/mc.jl
src/mc.jl
+14
-0
No files found.
input/FerFlow.in
View file @
c8237fcf
...
@@ -8,13 +8,14 @@ size = [8,8,8,8]
...
@@ -8,13 +8,14 @@ size = [8,8,8,8]
blocks = [4,4,4,4]
blocks = [4,4,4,4]
[HMC]
[HMC]
nth
= 10
0
nth
= 1
0
beta = 6.0
beta = 6.0
c0 = 1.0
c0 = 1.0
cG = 1.0
cG = 1.0
dmeas = 5
dmeas = 5
eps = 0.01
eps = 0.01
ns = 30
ns = 30
mclength = -1 # Number of measurements. Negative to ignore
[Fermion]
[Fermion]
kappa = 0.1348
kappa = 0.1348
...
@@ -30,10 +31,10 @@ N_noise = 6
...
@@ -30,10 +31,10 @@ N_noise = 6
t_zero = 2.0
t_zero = 2.0
epsilon = 0.01
epsilon = 0.01
nsteps = 100
nsteps = 100
tsource =
8
tsource =
4
[Backflow]
[Backflow]
N_noise = 6
N_noise = 6
Flow_times = [2.
47,3.86
]
Flow_times = [2.
0,3.0
]
Nsaves = 25
Nsaves = 25
tsource =
8
tsource =
4
This diff is collapsed.
Click to expand it.
main.jl
View file @
c8237fcf
...
@@ -38,6 +38,8 @@ while RUN_ON
...
@@ -38,6 +38,8 @@ while RUN_ON
@timeit
"Saving"
save_data
()
@timeit
"Saving"
save_data
()
check_run_status
()
end
end
print_timer
(
log_file
)
print_timer
(
log_file
)
...
...
This diff is collapsed.
Click to expand it.
src/io.jl
View file @
c8237fcf
...
@@ -99,6 +99,7 @@ function write_log()
...
@@ -99,6 +99,7 @@ function write_log()
println
(
log_file
,
"tolerance = "
,
params
[
"Fermion"
][
"tolerance"
])
println
(
log_file
,
"tolerance = "
,
params
[
"Fermion"
][
"tolerance"
])
println
(
log_file
,
"maxiter = "
,
params
[
"Fermion"
][
"maxiter"
])
println
(
log_file
,
"maxiter = "
,
params
[
"Fermion"
][
"maxiter"
])
println
(
log_file
,
"N noise frontflow = "
,
params
[
"Frontflow"
][
"N_noise"
])
println
(
log_file
,
"N noise frontflow = "
,
params
[
"Frontflow"
][
"N_noise"
])
println
(
log_file
,
"t_zero = "
,
params
[
"Frontflow"
][
"t_zero"
])
println
(
log_file
,
"eps frontflw = "
,
params
[
"Frontflow"
][
"epsilon"
])
println
(
log_file
,
"eps frontflw = "
,
params
[
"Frontflow"
][
"epsilon"
])
println
(
log_file
,
"t_source frontflow = "
,
params
[
"Frontflow"
][
"tsource"
])
println
(
log_file
,
"t_source frontflow = "
,
params
[
"Frontflow"
][
"tsource"
])
println
(
log_file
,
"Flow times = "
,
params
[
"Backflow"
][
"Flow_times"
])
println
(
log_file
,
"Flow times = "
,
params
[
"Backflow"
][
"Flow_times"
])
...
...
This diff is collapsed.
Click to expand it.
src/mc.jl
View file @
c8237fcf
...
@@ -25,6 +25,20 @@ function therm_or_readlist()
...
@@ -25,6 +25,20 @@ function therm_or_readlist()
return
nothing
return
nothing
end
end
function
check_run_status
()
if
parsed_args
[
"c"
]
==
nothing
global
RUN_ON
=
isfile
(
"RUN_ON_"
*
params
[
"Run"
][
"name"
])
else
global
RUN_ON
=
(
isfile
(
"RUN_ON_"
*
params
[
"Run"
][
"name"
])
&&
CONFIG_LIST
[
MCid
+
1
]
!=
"./cnfg/"
)
end
if
MCid
==
params
[
"HMC"
][
"mclength"
]
global
RUN_ON
=
false
end
return
nothing
end
function
Gauge_update
()
function
Gauge_update
()
if
parsed_args
[
"c"
]
==
nothing
if
parsed_args
[
"c"
]
==
nothing
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment