-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release cuda-12.6.0-anaconda-2024-06-py311
- Loading branch information
Showing
3 changed files
with
74 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
FROM nvidia/cuda:12.6.0-devel-ubuntu22.04 | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections | ||
|
||
# Install base utilities | ||
RUN apt-get update && \ | ||
apt-get install -y sudo | ||
|
||
# Install tzdata | ||
# ENV TZ=Etc/UTC | ||
# RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | ||
RUN apt-get install -y tzdata | ||
|
||
# Install developer tools | ||
RUN apt-get install -y build-essential && \ | ||
apt-get install -y wget && \ | ||
apt-get install -y git | ||
|
||
# Install LaTeX build system | ||
RUN apt-get install -y texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended texlive-fonts-extra texlive-xetex latexmk xindy dvipng ghostscript cm-super | ||
|
||
# Clean apt | ||
RUN sudo apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# Install miniconda | ||
ENV CONDA_DIR /opt/conda | ||
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh && \ | ||
/bin/bash ~/miniconda.sh -b -p /opt/conda | ||
RUN rm -rf Miniconda3-latest-Linux-x86_64.sh | ||
|
||
# Put conda in path so we can use conda activate | ||
ENV PATH=$CONDA_DIR/bin:$PATH | ||
|
||
# Setup Environment | ||
COPY environment.yml . | ||
RUN conda env create -f environment.yml | ||
RUN echo "source activate quantecon" > ~/.bashrc | ||
ENV PATH /opt/conda/envs/quantecon/bin:$PATH | ||
ENV CONDA_DEFAULT_ENV quantecon | ||
|
||
# Install JAX | ||
RUN nvcc --version | ||
RUN pip install "numpyro[cuda]" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html | ||
# Note: always install jax[cuda] last to ensure proper CUDA+CUDANN version linking | ||
RUN pip install --upgrade "jax[cuda12_pip]" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: quantecon | ||
channels: | ||
- default | ||
dependencies: | ||
- python=3.11 | ||
- anaconda=2024.06 | ||
- pip | ||
- pip: | ||
- jupyter-book==0.15.1 | ||
- quantecon-book-theme==0.7.1 | ||
- sphinx-tojupyter==0.3.0 | ||
- sphinxext-rediraffe==0.2.7 | ||
- sphinx-reredirects==0.1.3 | ||
- sphinx-exercise==0.4.1 | ||
- ghp-import==1.1.0 | ||
- sphinxcontrib-youtube==1.1.0 | ||
- sphinx-togglebutton==0.3.1 | ||
- array-to-latex | ||
- prettytable | ||
- kaleido | ||
- arviz | ||
# Docker Requirements | ||
- pytz | ||
# Docutils Issue (https://github.com/mcmtroffaes/sphinxcontrib-bibtex/issues/322) | ||
- docutils==0.17.1 | ||
|