Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Register
  • Sign in
  • M micropp
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
  • Issues 125
    • Issues 125
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 1
    • Merge requests 1
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Container Registry
    • Terraform modules
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • alyaalya
  • liblib
  • micropp
  • Wiki
  • Home

Home · Changes

Page history
Update home authored Aug 14, 2020 by Adrià Quintanas Corominas's avatar Adrià Quintanas Corominas
Hide whitespace changes
Inline Side-by-side
home.md
View page @ c688e23c
......@@ -24,11 +24,11 @@ MicroPP compilation
**MicroPP-CPU**
1) mkdir build-cpu
2) cd build-cpu
3) ccmake ../
1)` mkdir build-cpu`
2) `cd build-cpu`
3) `ccmake ../`
4) Type `c`, activate the flags: `OPEN_MPI`, copy the folder path into `CMAKE_INSTALL_PREFIX`, and finally, type `c` and `g` to proceed with the configure.
5) make
5) `make`
Alya compilation
......@@ -36,31 +36,34 @@ Alya compilation
**Create symbolic links**
1) cd `Thirdparties/micropp/build`
2) ln -s path_to_micropp/`libmicropp.a`
3) ln -s path_to_micropp/`libmaterial.mod`
4) ln -s path_to_micropp/`libmicropp.mod`
1) `cd Thirdparties/micropp/build`
2) `ln -s path_to_micropp/libmicropp.a`
3) `ln -s path_to_micropp/libmaterial.mod`
4) `ln -s path_to_micropp/libmicropp.mod`
**Configure Alya**
1) cd Executables/unix/
2) cp configure.in/micropp/configure_gpu_power9.in config.in
3) ./configure -x solidz
1) `cd Executables/unix/`
2) `cp configure.in/micropp/configure_gpu_power9.in config.in`
3) `./configure -x solidz`
**Compile Metis4**
1) make metis4
1) `cd Executables/unix/`
2) `make metis4`
**Modify makefile**
1) Find the MicroPP section in the `makefile` file to include ``.
1) `cd Executables/unix/`
2) Edit the MicroPP section in the `makefile` file to include ``.
**Compile Alya**
1) make -j 8
1) `cd Executables/unix/`
2) `make -j 8`
Clone repository
  • Home