Enviroment updated. Read updated.

parent d7c4b2d7
......@@ -2,7 +2,7 @@
julia_version = "1.8.5"
manifest_format = "2.0"
project_hash = "a2f522087b39a566dc4bd7858e0cbf9aae0d605b"
project_hash = "7a31d20d9e16a1e751c8e1b248aa5f00852fd2de"
[[deps.ADerrors]]
deps = ["BDIO", "FFTW", "FastGaussQuadrature", "ForwardDiff", "LaTeXStrings", "LinearAlgebra", "Nettle", "PGFPlotsX", "Plots", "Printf", "QuadGK", "Roots", "Statistics", "Test", "UnicodePlots"]
......@@ -45,6 +45,12 @@ git-tree-sha1 = "a3a402a35a2f7e0b87828ccabbd5ebfbebe356b4"
uuid = "dce04be8-c92d-5529-be00-80e4d2c0e197"
version = "2.3.0"
[[deps.ArgParse]]
deps = ["Logging", "TextWrap"]
git-tree-sha1 = "22cf435ac22956a7b45b0168abbc871176e7eecc"
uuid = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
version = "1.2.0"
[[deps.ArgTools]]
uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f"
version = "1.1.1"
......@@ -709,6 +715,12 @@ git-tree-sha1 = "c1dd6d7978c12545b4179fb6153b9250c96b0075"
uuid = "e6f89c97-d47a-5376-807f-9c37f3926c36"
version = "1.0.3"
[[deps.MD5]]
deps = ["Random", "SHA"]
git-tree-sha1 = "1576f756617d31eb397a4a517b68562fd28dc2b4"
uuid = "6ac74813-4b46-53a4-afec-0b5dc9d7885c"
version = "0.2.3"
[[deps.MKL_jll]]
deps = ["Artifacts", "IntelOpenMP_jll", "JLLWrappers", "LazyArtifacts", "Libdl", "oneTBB_jll"]
git-tree-sha1 = "f046ccd0c6db2832a9f639e2c669c6fe867e5f4f"
......@@ -1141,6 +1153,11 @@ version = "0.1.1"
deps = ["InteractiveUtils", "Logging", "Random", "Serialization"]
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
[[deps.TextWrap]]
git-tree-sha1 = "43044b737fa70bc12f6105061d3da38f881a3e3c"
uuid = "b718987f-49a8-5099-9789-dcd902bef87d"
version = "1.0.2"
[[deps.TimerOutputs]]
deps = ["ExprTools", "Printf"]
git-tree-sha1 = "5a13ae8a41237cff5ecf34f73eb1b8f42fff6531"
......
[deps]
ADerrors = "5e92007d-7bf1-471c-8ceb-4591b8b567a9"
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
BDIO = "375f315e-f2c4-11e9-2ef9-134f02f79e27"
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
LatticeGPU = "958c3683-801a-4582-9cfa-2d6e2ae1763b"
MD5 = "6ac74813-4b46-53a4-afec-0b5dc9d7885c"
TimerOutputs = "a759f4b9-e2f1-59dc-863e-4aeb61b1ea8f"
[Run]
user = "Lattice_user"
name = "Run1L32"
name = "Run1L8"
[Space]
bc = 3 # 3 OPEN, 0 PERIODIC, SF_AFWB or SF_ORBI
size = [16,16,16,16]
size = [8,8,8,8]
blocks = [4,4,4,4]
[HMC]
......
......@@ -7,7 +7,7 @@ using CUDA
function therm_or_readlist()
println(log_file,"\n Starting simulation\n")
println(log_file,"\nStarting simulation\n")
if parsed_args["c"] == nothing
println(log_file,"Thermalizing...")
flush(log_file)
......
......@@ -34,7 +34,6 @@ function load_fields()
return nothing
end
"""
function two_pt()
......@@ -106,8 +105,6 @@ function two_pt()
return nothing
end
"""
function one_pt()
......@@ -182,8 +179,6 @@ function one_pt()
return nothing
end
"""
function two_pt_rnd()
......
......@@ -38,6 +38,8 @@ function read_ff(name::String)
ap_corr = Array{ComplexF64}(undef,1,iL[4],N_noise);
pp_corr_t = Array{Float64}(undef,1,iL[4],N_noise,nflow);
ap_corr_t = Array{ComplexF64}(undef,1,iL[4],N_noise,nflow);
pp_corr_tfl = Array{Float64}(undef,1,iL[4],N_noise,nflow);
ap_corr_tfl = Array{ComplexF64}(undef,1,iL[4],N_noise,nflow);
Sigma = Array{ComplexF64}(undef,1,iL[4],N_noise,nflow);
Phat_t = Array{Float64}(undef,1,N_noise,nflow);
Sigma_cfl = Array{ComplexF64}(undef,1,iL[4],N_noise,nflow);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment