Commit 3b759040 authored by Wes Brown's avatar Wes Brown

First pass at argo workflow.

parent 0bde514b
FROM gooseai/torch-base:6cfdc11
RUN apt-get install -y cuda-nvcc-11-3 cuda-nvml-dev-11-3 libcurand-dev-11-3 \
libcublas-dev-11-3 libcusparse-dev-11-3 \
libcusolver-dev-11-3 cuda-nvprof-11-3 \
ninja-build && \
apt-get clean
RUN mkdir -p /app
WORKDIR /app
# Requirements
COPY requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt
# Then our source
COPY . .
CMD [ "/usr/bin/python3", "hypertrain.py" ]
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment