1
0
mirror of https://github.com/TREX-CoE/trexio.git synced 2024-07-22 18:57:39 +02:00
Go to file
2021-06-04 15:00:13 +02:00
.github/workflows avoid cloning htmlize 2021-04-12 16:18:49 +02:00
docs rm gitignore in docs 2021-04-12 14:31:05 +02:00
include update gitignore 2021-05-03 15:06:30 +02:00
lib add gitignore 2021-04-30 16:21:13 +02:00
m4 Improve HDF5 in configure 2021-06-03 01:25:20 +02:00
pkgconfig Improve HDF5 in configure 2021-06-03 01:25:20 +02:00
src Add trexio_set_one_based in fortran interface 2021-06-04 15:00:13 +02:00
tests add C test for file reopening to write missing blocks 2021-06-02 20:22:34 +02:00
tools Major refactoring of the generator script (#47) 2021-05-26 19:11:46 +02:00
.gitignore Automake done. Need to improve tests 2021-05-28 13:36:39 +02:00
.gitmodules org-mode to html conversion for the documentation website (#41) 2021-04-09 16:45:44 +02:00
AUTHORS Typo 2021-06-02 10:44:03 +02:00
autogen.sh Automake done. Need to improve tests 2021-05-28 13:36:39 +02:00
ChangeLog Automake done. Need to improve tests 2021-05-28 13:36:39 +02:00
configure.ac Add index in files 2021-06-04 14:43:27 +02:00
COPYING Automake done. Need to improve tests 2021-05-28 13:36:39 +02:00
INSTALL Automake done. Need to improve tests 2021-05-28 13:36:39 +02:00
LICENSE Initial commit 2021-01-18 15:48:36 +01:00
Makefile.am Fixed parallel builds 2021-06-04 14:11:17 +02:00
NEWS Automake done. Need to improve tests 2021-05-28 13:36:39 +02:00
README Automake done. Need to improve tests 2021-05-28 13:36:39 +02:00
README.md Typo 2021-06-02 00:02:42 +02:00
Sparse.org Moved sparse documentation in src/templates_front/templator_front.org 2021-06-03 13:56:45 +02:00
trex.json Add index in files 2021-06-04 14:43:27 +02:00
trex.org Add index in files 2021-06-04 14:43:27 +02:00

TREXIO

TREX library fo efficient I/O.

Minimal requirements (for users):

  • Autoconf
  • C compiler (gcc/icc/clang)
  • Fortran compiler (gfortran/ifort/flang)

Installation procedure from the tarball (for users):

  1. Download the trexio-<version>.tar.gz file
  2. gzip -cd trexio-<version>.tar.gz | tar xvf -
  3. cd trexio-<version>
  4. ./configure
  5. make
  6. make check
  7. sudo make install

Note: on systems with no sudo rights access, one can replace ./configure with ./configure prefix=${PWD} in order to execute make install/uninstall commands without sudo. This will enable the installation in the root directory of the library.

Additional requirements (for developers):

  • Automake
  • python3 (>=3.6)
  • Emacs (>=26.0)

Installation procedure from the GitHub repo clone (for developers):

  1. git clone https://github.com/TREX-CoE/trexio.git
  2. cd trexio
  3. ./autogen.sh
  4. ./configure
  5. make
  6. make check
  7. sudo make install

Tutorial

TODO

Technical documentation

Documentation generated from TREXIO org-mode files

Miscellaneous

Note: The code should be compliant with the C99 CERT C coding standard. This can be checked with the cppcheck tool.