Skip to content

Commit

Permalink
Merge pull request #380 from jeromekelleher/hack-half-threads-last-match
Browse files Browse the repository at this point in the history
Hack to get big inference working on limited RAM
  • Loading branch information
jeromekelleher authored Oct 20, 2024
2 parents dc47b6d + eecde47 commit 0cae4a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sc2ts/inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ def match_samples(
ts=base_ts,
mu=mu,
rho=rho,
num_threads=num_threads,
num_threads=num_threads // 2, # FIXME! temporary hack to enable big inference
deletions_as_missing=deletions_as_missing,
show_progress=show_progress,
progress_title=date,
Expand Down

0 comments on commit 0cae4a1

Please sign in to comment.