[deal.II] Re: Trouble Installing: "undefined symbol: cblas_ctrmv"

2019-01-24 Thread Denis Davydov
Hi Kyle, According to your config, deal.II picked up gslcblas.so: GSL_LIBRARIES = /usr/lib64/libgsl.so;/usr/lib64/libgslcblas.so Could you check if it contains the missing symbol, something like: $ nm -g

Re: [deal.II] output vector solution to vtk file

2019-01-24 Thread Jean-Paul Pelteret
Dear Pham, Welcome to deal.II! Your observation is related to this frequently asked question . Basically, deal.II outputs the

Re: [deal.II] output vector solution to vtk file

2019-01-24 Thread Phạm Ngọc Kiên
Dear Prof. Wolfgang Bangerth, I am a newbie with deal.II library, and I have a question in this topic. Thus, I put my question here. I can now output my vector values results using DataPostprocessor class into vtk file. However, when I opened the output file, I see some data points in the file

[deal.II] Trouble Running Exercises

2019-01-24 Thread kylew
Hi all, I'm having trouble running any of the exercises. Installation was successful, and all the quicktests pass. When I run cmake . from the example directory inside the install location (Or even when I give the path explicitly) I see that it finds deal.II # Project step-1 set up with

[deal.II] Re: Trouble Installing: "undefined symbol: cblas_ctrmv"

2019-01-24 Thread kylew
Thank you very much, this will work fine. -Kyle williams -- 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 User

[deal.II] Re: Trouble Installing: "undefined symbol: cblas_ctrmv"

2019-01-24 Thread David Wells
Hi Kyle, deal.II only uses GSL in two places: the Functions::CSpline class (which interpolates provided data with splines) and in FESeries::Legendre, (which is used in some regularity estimators). Unless you plan on using either of these classes directly I suggest just disabling GSL with the

[deal.II] Trouble Installing: "undefined symbol: cblas_ctrmv"

2019-01-24 Thread kylew
Hi all, I'm having trouble installing deal.II. cmake seems to find gsl just fine, but it looks like there is trouble when linking against it. As you can see in the quicktests.log, the error it gives is that "symbol lookup error: /lib64/libgsl.so.23: undefined symbol: cblas_ctrmv" I also see

[deal.II] deal.II Newsletter #64

2019-01-24 Thread Rene Gassmoeller
Hello everyone! This is deal.II newsletter #64. It automatically reports recently merged features and discussions about the deal.II finite element library. ## Below you find a list of recently proposed or merged features: #7635: Fix a typo (proposed by tamiko)