- Add enhanced README with project structure and quick start guide - Initialize repository with DCNv4 CUDA extension (PyTorch module) - Include classification, detection, and segmentation subdirectories - Reference upstream OpenGVLab DCNv4 implementation Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
32 lines
720 B
Bash
32 lines
720 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
|
|
PARTITION=$1
|
|
JOB_NAME=$2
|
|
CONFIG=$3
|
|
WORK_DIR=$4
|
|
GPUS=${GPUS:-1}
|
|
GPUS_PER_NODE=${GPUS_PER_NODE:-1}
|
|
CPUS_PER_TASK=${CPUS_PER_TASK:-10}
|
|
SRUN_ARGS=${SRUN_ARGS:-""}
|
|
PY_ARGS=${@:5}
|
|
|
|
PYTHONPATH="$(dirname $0)/..":$PYTHONPATH \
|
|
srun -p ${PARTITION} \
|
|
--job-name=${JOB_NAME} \
|
|
--gres=gpu:${GPUS_PER_NODE} \
|
|
--ntasks=${GPUS} \
|
|
--ntasks-per-node=${GPUS_PER_NODE} \
|
|
--cpus-per-task=${CPUS_PER_TASK} \
|
|
--kill-on-bad-exit=1 \
|
|
--quotatype=reserved \
|
|
${SRUN_ARGS} \
|
|
python -u main.py \
|
|
--cfg ${CONFIG} \
|
|
--accumulation-steps 1 \
|
|
--local-rank 0 \
|
|
--batch-size 128 \
|
|
--data-path /mnt/petrelfs/share/images \
|
|
--output work_dirs ${@:4} --launcher="slurm"
|