Skip to content

Instantly share code, notes, and snippets.

View misol's full-sized avatar
:octocat:
Ph.D in pharmacy

Min-Soo Kim misol

:octocat:
Ph.D in pharmacy
View GitHub Profile
@rigtorp
rigtorp / rocm.md
Last active September 18, 2023 01:23
How to build rocm 3.6.x beta from source

Install rocm-cmake

git clone https://github.com/RadeonOpenCompute/rocm-cmake.git
mkdir bulid
cd build
cmake -DCMAKE_INSTALL_PREFIX=/opt/rocm ..
make
sudo make install
@myjr52
myjr52 / ode_test.py
Last active October 19, 2018 05:58
integrate ode in python
# import functions
from numpy import linspace
from scipy.integrate import odeint
#import pylab as pyl
import matplotlib.pyplot as plt
# define constants
init_cond = [0.3, -0.1]
t_init = 0.0