ravil-mobile

Results 62 comments of ravil-mobile

Does it happen in the Fortran or C++ code?

maybe we can try something like below in the main CMakeLists.txt? ``` if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug") target_compile_options(SeisSol-lib PUBLIC "-g") endif() ```

or something like ``` if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g") endif() ``` here https://github.com/SeisSol/SeisSol/blob/b98133c397244e8f0bcb0e38e6a2d163b039409e/CMakeLists.txt#L296-L306

> but I thought it was default anyway on most compilers? You are right. Maybe it is not a case for Intel compiler. @sebwolf-de, have you tried the changes that...

Please, remove this *todo* https://github.com/SeisSol/SeisSol/blob/c7e7449018937ba280aa96710d58aafc210914bd/src/Initializer/tree/LTSTree.hpp#L197-L203

Hi, I ran tpv5 on M100 with ImpalaJIT-llvm backend and obtained correct numerical results.

Please, consider PR #643

Hi, I guess the problem comes from `easi`. In particular `impalajit`. The default `impalajit` variant supports only `x86` architecture but Marconi 100 is power9 architecture. There are 2 possible solutions:...

How large is your mesh? Here are some notes about memory requirements: https://seissol.readthedocs.io/en/latest/memory-requirements.html. You can add the following to your parameters.par file under Discretization: LtsWeightTypeId = 1 Alternatively, you can...

Hi @krenzland, I agree but I don't think that it is a SeisSol's job to throw an error message in case of Impala syntax. I think it is a job...