Skip to content
qjivy edited this page Apr 3, 2024 · 4 revisions

Welcome to the plctlab/numpy dev wiki!

Setup development environment (archrv rootfs ver.)

curl -O https://archriscv.felixc.at/images/archriscv-latest.tar.zst
mkdir archriscv
sudo tar -I zstd -xf archriscv-20220727.tar.zst -C archriscv
sudo systemd-nspawn -D ./archriscv -a -U
pacman -S git python clang cmake make vim vi scp
python -m venv venv
source venv/bin/activate


git clone https://github.com/plctlab/numpy.git
cd numpy
#python -m pip install -r requirements/all_requirements.txt
python -m pip install -r build_requirements.txt
git submodule update --init
spin build -v

python -m pip install -r test_requirements.txt

spin test -v
 
#for benchmark
pip install asv mamba
spin bench -v 
Clone this wiki locally