Skip to content

Commit

Permalink
remove GC thread settings
Browse files Browse the repository at this point in the history
since that likely wasn't correcting the problem
  • Loading branch information
akhanf authored Sep 12, 2024
1 parent c19053e commit f162dab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rules/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def get_stains(wildcards):
# bigstitcher
def get_fiji_launcher_cmd(wildcards, output, threads, resources):
launcher_opts_find = "-Xincgc"
launcher_opts_replace = f"-XX:+UseG1GC -verbose:gc -XX:+PrintGCDateStamps -XX:ActiveProcessorCount={threads} -XX:ParallelGCThreads={int(threads/2)} -XX:ConcGCThreads={int(threads/4)}"
launcher_opts_replace = f"-XX:+UseG1GC -verbose:gc -XX:+PrintGCDateStamps -XX:ActiveProcessorCount={threads}"
pipe_cmds = []
pipe_cmds.append("ImageJ-linux64 --dry-run --headless --console")
pipe_cmds.append(f"sed 's/{launcher_opts_find}/{launcher_opts_replace}'/")
Expand Down

0 comments on commit f162dab

Please sign in to comment.