Skip to content

Commit

Permalink
change to 2 rrun only
Browse files Browse the repository at this point in the history
  • Loading branch information
bobkatla committed Oct 25, 2024
1 parent 8d42d6d commit ca49324
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions PopSynthesis/Methods/IPSF/CSP/run_by_layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def main():
hh_pool=hh_pool,
hh_marg=hh_marg,
pools_ref=pools_ref,
max_run_time=5,
max_run_time=2,
)
##

Expand All @@ -44,10 +44,10 @@ def main():
print(f"Error hh rm are: {err_rm}")

# output
final_syn_hh.to_csv(output_dir / "IPSF_HH.csv", index=False)
final_syn_pp.to_csv(output_dir / "IPSF_PP.csv", index=False)
final_syn_hh.to_csv(output_dir / "IPSF_HH_2rrun.csv", index=False)
final_syn_pp.to_csv(output_dir / "IPSF_PP_2rrun.csv", index=False)
if cannot_assign_hh is not None:
cannot_assign_hh.to_csv(output_dir / "IPSF_cannot_assign_hh.csv", index=False)
cannot_assign_hh.to_csv(output_dir / "IPSF_cannot_assign_hh_2rrun.csv", index=False)


if __name__ == "__main__":
Expand Down
1 change: 1 addition & 0 deletions job_ipsf.script
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#SBATCH --job-name=run_ipsf
#SBATCH --partition=comp
#SBATCH --nodes=1
#SBATCH --mem=64G
#SBATCH --cpus-per-task=2
#SBATCH --ntasks=1
#SBATCH --time=160:00:00
Expand Down

0 comments on commit ca49324

Please sign in to comment.