Skip to content

Instantly share code, notes, and snippets.

@philipmac
Created May 20, 2022 22:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save philipmac/db6405f2f190869a1649d6993da71d6d to your computer and use it in GitHub Desktop.
Save philipmac/db6405f2f190869a1649d6993da71d6d to your computer and use it in GitHub Desktop.
$ cat config.py
import os
from pathlib import Path
from dask_jobqueue import SLURMCluster
from prefect.executors import DaskExecutor
import prefect
def SLURM_exec():
cluster = SLURMCluster(n_workers=30)
logging = prefect.context.get("logger")
logging.debug(f"Dask cluster started")
logging.debug(f"see dashboard {cluster.dashboard_link}")
return cluster
class Config:
# location in container
dm2mrc_loc = "/usr/local/IMOD/bin/dm2mrc"
mrc2tif_loc = "/usr/local/IMOD/bin/mrc2tif"
size_lg = "1024x1024"
size_sm = "300x300"
# the path to the Projects dir - can vary depending on mount point.
# assets_dir = "/hedwigqa_data/Assets/"
two_d_input_exts = ["dm4", "dm3", "tif", "tiff", "png", "jpg", "jpeg"]
SLURM_EXECUTOR = DaskExecutor(cluster_class=SLURM_exec)
brt_binary = "/opt/rml/imod/bin/batchruntomo"
# brt_binary = "/usr/local/IMOD/bin/batchruntomo"
# tmp_dir = "/gs1/home/macmenaminpe/tmp"
tmp_dir = "/gs1/Scratch/macmenaminpe_scratch/"
# tmp_dir = "/tmp/"
mount_point = "/mnt/ai-fas12/"
# mount_point = "/home/macmenaminpe/"
proj_dir = f"{mount_point}/data/"
# repo_dir = os.path.join(os.path.dirname(__file__), "..")
repo_dir = Path(os.path.dirname(__file__))
template_dir = Path(f"{repo_dir.as_posix()}/templates")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment