Skip to content

Instantly share code, notes, and snippets.

@HUGHNew
Created September 17, 2025 04:55
Show Gist options
  • Save HUGHNew/66a067b6ac04f8fc26688451781efb14 to your computer and use it in GitHub Desktop.
Save HUGHNew/66a067b6ac04f8fc26688451781efb14 to your computer and use it in GitHub Desktop.
Dispatch your GPU task with Conda/Mamba in a faster way
function order() {
args=("$@")
args=("${args[@]:1}")
if env|grep CONDA_PREFIX > /dev/null;then
__LDP=$LD_LIBRARY_PATH:$CONDA_PREFIX
fi
LD_LIBRARY_PATH=$__LDP CUDA_DEVICE_ORDER=PCI_BUS_ID CUDA_VISIBLE_DEVICES=$1 ${args[@]}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment