Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
jtwhite79 committed Sep 4, 2023
2 parents 07ddce1 + d448cf5 commit d4730a7
Show file tree
Hide file tree
Showing 8 changed files with 202 additions and 122 deletions.
125 changes: 113 additions & 12 deletions benchmarks/basic_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -874,14 +874,31 @@ def mf6_v5_ies_test():

t_d = os.path.join(model_d,"template")
m_d = os.path.join(model_d,"master_ies_glm_loc")
if os.path.exists(m_d):
shutil.rmtree(m_d)
#if os.path.exists(m_d):
# shutil.rmtree(m_d)
pst = pyemu.Pst(os.path.join(t_d,"freyberg6_run_ies.pst"))
pst.control_data.noptmax = 0
pst.write(os.path.join(t_d,"freyberg6_run_ies.pst"))
pyemu.os_utils.run("{0} freyberg6_run_ies.pst".format(exe_path),cwd=t_d)

pst.control_data.noptmax = 3
par = pst.parameter_data

eff_lb = (par.parlbnd + (np.abs(par.parlbnd.values)*.01)).to_dict()
eff_ub = (par.parubnd - (np.abs(par.parlbnd.values)*.01)).to_dict()
log_idx = par.partrans.apply(lambda x: x=="log").to_dict()
for p,log in log_idx.items():
if log:
lb = np.log10(par.loc[p,"parlbnd"])
eff_lb[p] = (lb + (np.abs(lb)*.01))
ub = np.log10(par.loc[p,"parubnd"])
eff_ub[p] = (ub - (np.abs(ub)*.01))

pargp_map = par.groupby(par.pargp).groups
print(pargp_map)




m_d = os.path.join(model_d, "master_ies_glm_noloc_standard")
if os.path.exists(m_d):
Expand All @@ -890,18 +907,50 @@ def mf6_v5_ies_test():
pst.pestpp_options.pop("ies_localizer",None)
pst.pestpp_options.pop("ies_autoadaloc",None)
pst.pestpp_options["ies_bad_phi_sigma"] = 2.5
pst.pestpp_options["ies_num_reals"] = 30
pst.pestpp_options["ensemble_output_precision"] = 40
pst.control_data.noptmax = 3
pst.write(os.path.join(t_d, "freyberg6_run_ies_glm_noloc_standard.pst"))
pyemu.os_utils.start_workers(t_d, exe_path, "freyberg6_run_ies_glm_noloc_standard.pst", num_workers=15,
pst_name = "freyberg6_run_ies_glm_noloc_standard.pst"
pst.write(os.path.join(t_d, pst_name))
pyemu.os_utils.start_workers(t_d, exe_path, pst_name, num_workers=15,
master_dir=m_d, worker_root=model_d, port=port)

return
phidf = pd.read_csv(os.path.join(m_d,pst_name.replace(".pst",".phi.actual.csv")))
assert phidf.shape[0] == pst.control_data.noptmax + 1
for i in range(1,pst.control_data.noptmax+1):
pcs = pd.read_csv(os.path.join(m_d,pst_name.replace(".pst",".{0}.pcs.csv".format(i))),index_col=0)
#print(pcs)
pe = pd.read_csv(os.path.join(m_d,pst_name.replace(".pst",".{0}.par.csv".format(i))),index_col=0)
print(pe.shape)
#print(pe)
groups = pcs.index.values.copy()
groups.sort()
for group in groups:
pnames = pargp_map[group].values
lb_count,ub_count = 0,0
for pname in pnames:
lb,ub = eff_lb[pname],eff_ub[pname]
v = pe.loc[:,pname].values.copy()
if log_idx[pname]:
v = np.log10(v)
low = np.zeros_like(v,dtype=int)
low[v < lb] = 1
high = np.zeros_like(v,dtype=int)
high[v > ub] = 1
lb_count += low.sum()
ub_count += high.sum()
print(i,group,len(pnames),lb_count,pcs.loc[group,"num_at_near_lbound"],ub_count,pcs.loc[group,"num_at_near_ubound"])
assert lb_count == pcs.loc[group,"num_at_near_lbound"]
assert ub_count == pcs.loc[group,"num_at_near_ubound"]

pst.write(os.path.join(t_d,"freyberg6_run_ies_glm_loc.pst"))

m_d = os.path.join(model_d, "master_ies_glm_covloc")
if os.path.exists(m_d):
shutil.rmtree(m_d)
pst.pestpp_options["ies_loc_type"] = "cov"
pst.pestpp_options["ies_lambda_mults"] = [1.0]
pst.pestpp_options["lambda_scale_fac"] = [1.0]
pst.control_data.noptmax = 2
#pst.pestpp_options.pop("ies_localizer",None)
pst.write(os.path.join(t_d, "freyberg6_run_ies_glm_covloc.pst"))
pyemu.os_utils.start_workers(t_d, exe_path, "freyberg6_run_ies_glm_covloc.pst", num_workers=15,
Expand All @@ -913,7 +962,9 @@ def mf6_v5_ies_test():
pst = pyemu.Pst(os.path.join(t_d, "freyberg6_run_ies.pst"))
pst.pestpp_options.pop("ies_localizer",None)
pst.pestpp_options.pop("ies_autoadaloc",None)
pst.control_data.noptmax = 3
pst.pestpp_options["ies_lambda_mults"] = [1.0]
pst.pestpp_options["lambda_scale_fac"] = [1.0]
pst.control_data.noptmax = 2
pst.write(os.path.join(t_d, "freyberg6_run_ies_glm_noloc.pst"))
pyemu.os_utils.start_workers(t_d, exe_path, "freyberg6_run_ies_glm_noloc.pst", num_workers=15,
master_dir=m_d, worker_root=model_d, port=port)
Expand All @@ -922,7 +973,9 @@ def mf6_v5_ies_test():
if os.path.exists(m_d):
shutil.rmtree(m_d)
pst = pyemu.Pst(os.path.join(t_d, "freyberg6_run_ies.pst"))
pst.control_data.noptmax = 3
pst.pestpp_options["ies_lambda_mults"] = [1.0]
pst.pestpp_options["lambda_scale_fac"] = [1.0]
pst.control_data.noptmax = 2
pst.pestpp_options["ies_use_mda"] = True
pst.write(os.path.join(t_d, "freyberg6_run_ies_mda_loc.pst"))
pyemu.os_utils.start_workers(t_d, exe_path, "freyberg6_run_ies_mda_loc.pst", num_workers=15,
Expand All @@ -943,7 +996,9 @@ def mf6_v5_ies_test():
if os.path.exists(m_d):
shutil.rmtree(m_d)
pst = pyemu.Pst(os.path.join(t_d, "freyberg6_run_ies.pst"))
pst.control_data.noptmax = 3
pst.control_data.noptmax = 2
pst.pestpp_options["ies_lambda_mults"] = [1.0]
pst.pestpp_options["lambda_scale_fac"] = [1.0]
pst.pestpp_options["ies_use_mda"] = True
pst.pestpp_options.pop("ies_localizer", None)
pst.pestpp_options.pop("ies_autoadaloc", None)
Expand All @@ -955,7 +1010,9 @@ def mf6_v5_ies_test():
if os.path.exists(m_d):
shutil.rmtree(m_d)
pst = pyemu.Pst(os.path.join(t_d, "freyberg6_run_ies.pst"))
pst.control_data.noptmax = 3
pst.control_data.noptmax = 2
pst.pestpp_options["ies_lambda_mults"] = [1.0]
pst.pestpp_options["lambda_scale_fac"] = [1.0]
pst.pestpp_options["ies_num_threads"] = 1
pst.pestpp_options["ies_use_mda"] = False
pst.pestpp_options.pop("ies_localizer", None)
Expand All @@ -969,8 +1026,10 @@ def mf6_v5_ies_test():
if os.path.exists(m_d):
shutil.rmtree(m_d)
pst = pyemu.Pst(os.path.join(t_d, "freyberg6_run_ies.pst"))
pst.control_data.noptmax = 3
pst.control_data.noptmax = 2
pst.pestpp_options["ies_use_mda"] = False
pst.pestpp_options["ies_lambda_mults"] = [1.0]
pst.pestpp_options["lambda_scale_fac"] = [1.0]
pst.pestpp_options.pop("ies_localizer", None)
pst.pestpp_options.pop("ies_autoadaloc", None)
pst.pestpp_options["ies_multimodal_alpha"] = 0.25
Expand Down Expand Up @@ -1229,6 +1288,38 @@ def fr_timeout_test():
print(oe.shape)
assert oe.shape[0] == 5,oe.shape

with open(os.path.join(new_d,"run.py"),'w') as f:
f.write("import os\nimport time\nimport pyemu\npyemu.os_utils.run('mfnwt 10par_xsec.nam')\n")
f.write("if not os.path.exists('run.info'):\n exit()\n")
f.write("lines = open('run.info','r').readlines()\nrnum = int(lines[-1].split()[-1].split(':')[-1])\n")
f.write("if rnum % 10 == 0:\n print(junk)\n")
pst.pestpp_options = {}
pst.pestpp_options["ies_num_reals"] = 20 # hard coded to conditional below
pst.pestpp_options["panther_agent_freeze_on_fail"] = True
#pst.pestpp_options["overdue_giveup_fac"] = 1.0e+10
#pst.pestpp_options["overdue_giveup_minutes"] = 0.25
pst.write(os.path.join(new_d, "pest.pst"))
pst.control_data.noptmax = 2

pst.write(os.path.join(new_d, "pest.pst"))
m_d = os.path.join(model_d,"fr_timeout_master_freeze")
#num workers hard coded with conditional below
pyemu.os_utils.start_workers(new_d,exe_path,"pest.pst",num_workers=10,worker_root=model_d,master_dir=m_d)
#df = pyemu.helpers.parse_rmr_file(os.path.join(m_d,"pest.rmr"))
#print(df.action.to_list())
oe = pd.read_csv(os.path.join(m_d,"pest.{0}.obs.csv".format(pst.control_data.noptmax)),index_col=0)
assert oe.shape[0] == 17 # hard coded to num reals
with open(os.path.join(m_d,"pest.rmr"),'r') as f:
for line in f:
if "timeout" in line.lower():
raise Exception()
if line.strip().lower().endswith("agents connected"):
num = int(line.strip().split()[0])
print(line.strip())
assert num == 7 # hard coded above



def ins_missing_e_test():
import os
import shutil
Expand Down Expand Up @@ -1339,7 +1430,15 @@ def build_and_draw_prior(t_d="ends",num_reals=500):
pe.to_binary(os.path.join(t_d,"prior.jcb"))


def run():
model_d = "mf6_freyberg"
t_d = os.path.join(model_d,"template")
pst_name = "freyberg6_run_ies_glm_noloc_standard.pst"
pyemu.os_utils.start_workers(t_d, exe_path, pst_name, num_workers=15,
worker_root=model_d, port=4004)

if __name__ == "__main__":
#run()
#mf6_v5_ies_test()
#prep_ends()
#shutil.copy2(os.path.join("..","exe","windows","x64","Debug","pestpp-glm.exe"),os.path.join("..","bin","win","pestpp-glm.exe"))
Expand All @@ -1351,7 +1450,7 @@ def build_and_draw_prior(t_d="ends",num_reals=500):
#glm_long_name_test()
#sen_plusplus_test()
#parchglim_test()
unc_file_test()
#unc_file_test()
#cmdline_test()
#secondary_marker_test()
#basic_test("ies_10par_xsec")
Expand All @@ -1378,6 +1477,8 @@ def build_and_draw_prior(t_d="ends",num_reals=500):
#da_mf6_freyberg_test_2()
#shutil.copy2(os.path.join("..","exe","windows","x64","Debug","pestpp-ies.exe"),os.path.join("..","bin","win","pestpp-ies.exe"))
#tplins1_test()

fr_timeout_test()
#mf6_v5_ies_test()
#mf6_v5_sen_test()

Expand Down
2 changes: 1 addition & 1 deletion src/libs/common/config_os.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define CONFIG_OS_H_


#define PESTPP_VERSION "5.2.6";
#define PESTPP_VERSION "5.2.7";

#if defined(_WIN32) || defined(_WIN64)
#define OS_WIN
Expand Down
7 changes: 4 additions & 3 deletions src/libs/pestpp_common/EnsembleMethodUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3515,7 +3515,8 @@ void L2PhiHandler::report_group(bool echo) {
{
for (auto& oo : o.second)
{
if (oo.second == 0.0)
//if (oo.second == 0.0)
if (snzgroups.find(oo.first) == snzgroups.end())
continue;
len = max(len,(int)oo.first.size());
}
Expand Down Expand Up @@ -4508,9 +4509,9 @@ void ParChangeSummarizer:: update(ParameterEnsemble& pe)
for (int i = 0; i < num_reals; i++)
{
v = arr[i];
if (v > (ub[par_name] * 1.01))
if (v > (ub[par_name] - (abs(ub[par_name]) * 0.01)))
num_out_u++;
else if (v < (lb[par_name] * 0.99))
else if (v < (lb[par_name] + (abs(lb[par_name]) * 0.01)))
num_out_l++;
}
value1 = init_moments.first[par_name];
Expand Down
2 changes: 2 additions & 0 deletions src/libs/pestpp_common/Localizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -898,6 +898,8 @@ void AutoAdaLocThread::work(int thread_id)
{
if (list_obs.find(par_names[jpar]) != list_obs.end())
sobs = list_obs[par_names[jpar]]; // dont use at here - this way, any missing pars just get no obs
else
sobs.clear();
use_list_obs = true;
}
else
Expand Down
4 changes: 4 additions & 0 deletions src/libs/pestpp_common/Pest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -968,6 +968,10 @@ int Pest::process_ctl_file(ifstream& fin, string _pst_filename)
int Pest::process_ctl_file(ifstream& fin, string _pst_filename, ofstream& f_rec)
{
cout << "processing control file " << _pst_filename << endl;
if (!fin)
{
throw PestError("control file stream is not good");
}
string line;
string line_upper;
string section("");
Expand Down
Loading

0 comments on commit d4730a7

Please sign in to comment.