-
Notifications
You must be signed in to change notification settings - Fork 1
/
test_run.sh
61 lines (49 loc) · 1.81 KB
/
test_run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env bash
# Stop at first error
set -e
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
DOCKER_TAG="algo0"
DOCKER_NOOP_VOLUME="${DOCKER_TAG}-volume"
INPUT_DIR="${SCRIPT_DIR}/input"
OUTPUT_DIR="${SCRIPT_DIR}/output"
echo "=+= Cleaning up any earlier output"
if [ -d "$OUTPUT_DIR" ]; then
# Ensure permissions are setup correctly
# This allows for the Docker user to write to this location
rm -rf "${OUTPUT_DIR}"/*
chmod -f o+rwx "$OUTPUT_DIR"
else
mkdir --mode=o+rwx "$OUTPUT_DIR"
fi
echo "=+= (Re)build the container"
docker build "$SCRIPT_DIR" --platform=linux/amd64 --tag $DOCKER_TAG 2>&1
echo "=+= Doing a forward pass"
## Note the extra arguments that are passed here:
# '--network none'
# entails there is no internet connection
# 'gpus all'
# enables access to any GPUs present
# '--volume <NAME>:/tmp'
# is added because on Grand Challenge this directory cannot be used to store permanent files
docker volume create "$DOCKER_NOOP_VOLUME"
docker run --rm \
--platform=linux/amd64 \
--network none \
--gpus all \
--volume "$INPUT_DIR":/input \
--volume "$OUTPUT_DIR":/output \
--volume "$DOCKER_NOOP_VOLUME":/tmp \
$DOCKER_TAG
docker volume rm "$DOCKER_NOOP_VOLUME"
# Ensure permissions are set correctly on the output
# This allows the host user (e.g. you) to access and handle these files
docker run --rm \
--quiet \
--env HOST_UID=`id --user` \
--env HOST_GID=`id --group` \
--volume ${OUTPUT_DIR}:/output \
alpine:latest \
/bin/sh -c 'chown -R ${HOST_UID}:${HOST_GID} /output'
echo "=+= Wrote results to ${OUTPUT_DIR}"
# To export the container and prep it for upload to Grand-Challenge.org you can call:
#docker save ${DOCKER_TAG} | gzip -c > ${DOCKER_TAG}.tar.gz