[deal.II] Re: Deal.ii installation - make error

2024-03-19 Thread Bruno Turcksin
Hello, It looks like you installed your own version of Kokkos which requires C++17 but you compiled deal.II using C++14. You need to compile deal.II with C++17. You need to reconfigure deal.II and to use "-DCMAKE_CXX_STANDARD=17". Best, Bruno On Tuesday, March 19, 2024 at 8:19:36 AM UTC-4

[deal.II] Re: deal.II Installation Error

2021-04-02 Thread pushkar...@gmail.com
Any help in this regard will be helpful . Regards Pushkar On Friday, April 2, 2021 at 3:59:45 PM UTC+5:30 pushkar...@gmail.com wrote: > > Dear deal.II community, > > In my attempt to install deal.II with p4est and mpi which I need to run > PRISMS-PF I reinstalled the library but faced an

[deal.II] Re: deal.ii installation on NERSC Cori

2021-01-26 Thread Marc Fehling
Hello I am not familiar with the details of the NESRC Cori machine. In its documentation, I found the following manual . I hope this helps. I can only speak from my experience on HPC machines, and we had

Re: [deal.II] Re: DEAL.II INSTALLATION ERROR

2020-11-27 Thread Pushkar Pandit
Marc I did resolve the above issue as there was some problems with permissions while installing PETSC and I was installing it with root in /usr/lib/ directory which I installed without root privileges in /home/username/ directory and I did manage to compile the deal.II library with cmake.Anyways

Re: [deal.II] Re: DEAL.II INSTALLATION ERROR

2020-11-26 Thread Marc Fehling
Pushkar, would you check the `detailed.log` file in the build folder in which you configured deal.II with cmake and find the configuration details for PETSc. Does the PETSc folder specified in the log file contain the requested header files? The header files should be located in an include

Re: [deal.II] Re: DEAL.II INSTALLATION ERROR

2020-11-26 Thread Pushkar Pandit
Yes I did follow the above instructions but I am still facing the same issue . On Fri, Nov 27, 2020 at 3:53 AM Marc Fehling wrote: > Hi Pushkar! > > It appears the PETSc has been found during the configuration of deal.II > with cmake, but you can not find the header files of the PETSc libraries

[deal.II] Re: DEAL.II INSTALLATION ERROR

2020-11-26 Thread Marc Fehling
Hi Pushkar! It appears the PETSc has been found during the configuration of deal.II with cmake, but you can not find the header files of the PETSc libraries during compilation. Did you follow all instructions on how to interface deal.II to PETSc on this particular guide

[deal.II] Re: Deal.ii installation

2020-06-03 Thread Prasad Adhav
I was able to solve the issue by installing *trilinos-all-dev.* ~$ *sudo apt-get update -y* ~$ *sudo apt-get install -y trilinos-all-dev* Download Deal.ii Moved it to bin ~/bin$ *tar -xvf deal.II-9.1.1.tar.gz* ~/bin/dealii-9.1.1$ *mkdir build* ~/bin/dealii-9.1.1$ *cd build*

Re: [deal.II] Re: Deal.ii installation

2020-06-03 Thread Prasad Adhav
Dear Daniel, Thank you for your reply. 1. The thing is after I do the cmake step, and go on to do make --jobs=4 install , I get the following output in the terminal. make: *** No rule to make target 'install'. Stop. Am I running this command from a wrong directory? 2. For the dependencies,

Re: [deal.II] Re: Deal.ii installation

2020-06-03 Thread Daniel Arndt
Prasad, CMake ran successfully and the output looks fine. Some of the example steps require certain dependencies which you just didn't activate. Note, that you will not be able to use MPI with this configuration. Best, Daniel Am Mi., 3. Juni 2020 um 05:21 Uhr schrieb Prasad Adhav <

Re: [deal.II] Re: Deal.ii installation

2020-04-28 Thread Marc Fehling
Hi Prasad! My guess now is the following: You have PETSc and Trilinos installed on your device, which deal.II finds, but complains that PETSc has been installed with a different MPI configuration as is available for deal.II. -- Include

Re: [deal.II] Re: Deal.ii installation

2020-04-28 Thread Prasad Adhav
Marc, I hope this helps with figuring out the failing test. Thank you very much for your help. Regards, Prasad On Tue, Apr 28, 2020 at 4:04 PM Marc Fehling wrote: > Prasad! > > If you look closely into your CMakeError.log file, you'll find that there > are multiple tests failing. This is not

Re: [deal.II] Re: Deal.ii installation

2020-04-28 Thread Marc Fehling
Prasad! If you look closely into your CMakeError.log file, you'll find that there are multiple tests failing. This is not a bad thing: deal.II figures out your system configuration this way and enables/disables certain features. However in your case, it seems that there is a mandatory test

Re: [deal.II] Re: Deal.ii installation

2020-04-28 Thread Marc Fehling
Hi Prasad! On Tuesday, April 28, 2020 at 10:54:54 AM UTC+2, Prasad Adhav wrote: > > I am using cmake version 3.10.2 > With version 3.10.2, it is less likely that my suggestion will fix your problem. Did cmake actually finished the configuration, as Wolfgang pointed out? Going through the

Re: [deal.II] Re: Deal.ii installation

2020-04-28 Thread Prasad Adhav
Hello Marc, Thank you for your reply. I am using cmake version 3.10.2 My OS is Ubuntu 18.04 LTS. Do you think the cmake version is an issue? I will try the fix from the issue you suggested. Regards, Prasad On Tue, Apr 28, 2020 at 10:47 AM Marc Fehling wrote: > Hi Prasad! > > Thank you for

[deal.II] Re: Deal.ii installation

2020-04-28 Thread Marc Fehling
Hi Prasad! Thank you for providing the logs! It seems like this here is the cause of it: /usr/bin/ld: cannot find -lpthreads It seems like this is again related to the `-lpthread` problem. Just out of curiosity: Which version of cmake and which OS are you using? They may have updated CMake

Re: [deal.II] Re: Deal.ii installation

2020-04-28 Thread Prasad Adhav
Hello Wilmar, I did install cmake for another library I am using. The installation worked and I have tested out those installations. On Mon, Apr 27, 2020 at 8:18 PM Wilmar Alves Cruvinel Lima < wilmar84018...@gmail.com> wrote: > > > Em segunda-feira, 27 de abril de 2020 06:27:31 UTC-3, Prasad

[deal.II] Re: Deal.ii installation

2020-04-27 Thread Wilmar Alves Cruvinel Lima
Em segunda-feira, 27 de abril de 2020 06:27:31 UTC-3, Prasad Adhav escreveu: > > Hello, > > I am trying to install deal.ii for the first time. > I followed the instructions on the readme page( > https://www.dealii.org/current/readme.html) > > I use the following for cmake and it worked fine: > >

Re: [deal.II] Re: deal.II installation on cray XC50 giving MPI_VERSION=0.0

2020-02-10 Thread Wolfgang Bangerth
On 2/7/20 11:43 PM, vachan potluri wrote: I really appreciate and value your involvement in this thread. I have attached mpi.h with this mail. I want to mention that I added this line in FindMPI.cmake just before DEAL_II_FIND_FILE(MPI_MPI_H ...): MESSAGE(STATUS "Searching for mpi.h in

[deal.II] Re: deal.II installation on cray XC50 giving MPI_VERSION=0.0

2020-02-10 Thread Bruno Turcksin
Vachan, I saw on the other thread that you were using CMake 3.5. I would advise to download a newer version of CMake. deal.II uses FindMPI from CMake and this was rewritten in CMake 3.10 to fix problems with Cray supercomputers. Best, Bruno On Saturday, February 8, 2020 at 1:43:59 AM UTC-5,

[deal.II] Re: deal.II installation on cray XC50 giving MPI_VERSION=0.0

2020-02-07 Thread vachan potluri
Dear Prof. Bangerth, Can you attach it to a reply? It would be interesting to see why the > version > detection didn't work. (Although I see that cmake complains that it can't > find > the file, so that is probably the issue. I don't know why it can't find > the > file...) I really

[deal.II] Re: deal.II installation on cray XC50 giving MPI_VERSION=0.0

2020-02-06 Thread vachan potluri
> > If you know to which standard the MPI installation is conforming, you > could try to set it via > cmake -DMPI_VERSION=... > yourself. The MPI version is 3.1. But will this be of use? After all, the include paths, linker flags and library variables will still be blank. But separately,

[deal.II] Re: Deal.II-Installation on Cluster fails

2019-07-12 Thread 'Maxi Miller' via deal.II User Group
Yes, that works, thanks! Am Donnerstag, 11. Juli 2019 17:01:21 UTC+2 schrieb Daniel Arndt: > > Maxi, > > Can you just try again with a recent commit? > > Best, > Daniel > -- The deal.II project is located at http://www.dealii.org/ For mailing list/forum options, see

[deal.II] Re: Deal.II-Installation on Cluster fails

2019-07-11 Thread Daniel Arndt
Maxi, Can you just try again with a recent commit? Best, Daniel -- The deal.II project is located at http://www.dealii.org/ For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en --- You received this message because you are subscribed to the Google Groups

[deal.II] Re: deal.ii installation error_through Spack on Ubuntu

2019-03-07 Thread Behrooz Karami
Thanks very much. It worked perfectly! Best, Behrooz On Wednesday, March 6, 2019 at 4:21:42 PM UTC+1, Bruno Turcksin wrote: > > BK, > > On Wednesday, March 6, 2019 at 10:15:10 AM UTC-5, Behrooz Karami wrote: >> >> I was trying to install deal.ii on Ubuntu 18 using Spack. >> But Ubuntu freezes and

[deal.II] Re: deal.ii installation error_through Spack on Ubuntu

2019-03-06 Thread Bruno Turcksin
BK, On Wednesday, March 6, 2019 at 10:15:10 AM UTC-5, Behrooz Karami wrote: > > I was trying to install deal.ii on Ubuntu 18 using Spack. > But Ubuntu freezes and after a long time I receive a long log error as > attached. > Your computer does not have enough memory to compile deal.II with 8