Skip to content

Instantly share code, notes, and snippets.

View sanromd's full-sized avatar

damian san roman alerigi sanromd

View GitHub Profile
@sanromd
sanromd / hpc_setup.md
Last active January 29, 2021 12:56
setup an hpc & learning environment using miniconda, openblas, mpich, petsc, and tensorflow

setting up an hpc environment

preamble

create a sandbox, a place to store sources, compile, and develop

mkdir -p <path to sandbox>\opt\src
@sanromd
sanromd / py_numerics_setup.sh
Last active January 14, 2022 19:51
This script is a work-in-progress. It helps with installing dependencies and # packages for numerical analytics and simulation.
# This script is a work-in-progress. THe goal is to help others install a
# numerical platform for analytics and simulation.
#
# It will install the libraries needed to work with mpich in python. It also
# compiles OpenBLAS and uses it to build the latest release of numpy and scipy.
# ------------------------------------------------------------------------------ #
# This version uses github and bitbucket sources, alternatively you may select
# non-git sources, supported via wget
# ------------------------------------------------------------------------------ #
# ------------------------------------------------------------------------------ #
@sanromd
sanromd / clawpack.yml
Last active September 18, 2023 09:30
clawpack/pyclaw/emclaw environment file
name: clawpack
channels:
- conda-forge
dependencies:
- python=3.11
- mpich
- numpy
- scipy
- matplotlib
- vtk