From e3624cbb651b9d1c9d311a137b779196dc6c289b Mon Sep 17 00:00:00 2001 From: Florent Pruvost <florent.pruvost@inria.fr> Date: Fri, 31 Jan 2025 15:33:26 +0100 Subject: [PATCH] faq1: update -j20 --- content/pages/faq.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/pages/faq.md b/content/pages/faq.md index 7073a11..4e7ba64 100644 --- a/content/pages/faq.md +++ b/content/pages/faq.md @@ -29,7 +29,7 @@ mkdir build cd build ../configure --prefix=$HOME/dev/builds/starpu --disable-opencl --disable-cuda --disable-fortran # see https://files.inria.fr/starpu/testing/master/doc/html/CompilationConfiguration.html -make -j && make -j install +make -j20 install ``` Adjust environment variables (for example in your `.bash_profile`): @@ -57,7 +57,7 @@ cd chameleon mkdir build cd build cmake .. -DCMAKE_INSTALL_PREFIX=$HOME/dev/builds/chameleon/ -DCHAMELEON_USE_MPI=OFF -DCHAMELEON_ENABLE_EXAMPLE=OFF -DCHAMELEON_ENABLE_TESTING=ON -DCHAMELEON_PREC_C=OFF -DCHAMELEON_PREC_Z=OFF -DBLA_VENDOR=Intel10_64lp_seq -make -j && make -j +make -j20 install $HOME/dev/builds/chameleon/bin/chameleon_stesting -o potrf -H # should print some nice results ``` -- GitLab