TREX-CoE / trexio

TREX I/O library
https://trex-coe.github.io/trexio/
BSD 3-Clause "New" or "Revised" License
49 stars 14 forks source link

Updated readme #134

Closed scemama closed 11 months ago

scemama commented 12 months ago

I rewrote a few things in the readme. I changed

make -j`getconf _NPROCESSORS_ONLN`

because I think it was unnecessarily complicated. Also, I think that when you run with a very large number of cores, the Fortran module might not be compiled when expected. I put make -j 4 because it is more deterministic.

Also, I added a section to specify that people can distribute TREXIO with their codes, and that they should use the release tarballs.

q-posev commented 11 months ago

getconf _NPROCESSORS_ONLN is the only portable unix solution i could find. Having a fixed number is ok too.

For your prefix additions, you can specify that it's just a recommendation to use .local. The user should have the full freedom of choosing the installation prefix.

scemama commented 11 months ago

OK, thanks, I rewrote that part.