Sergey Klevtsov
Sergey Klevtsov
With `list()`: ``` -- BLT MPI Link Flags: -Xlinker --enable-new-dtags -Xlinker -rpath -Xlinker /usr/local/Intel_16/compilers_and_libraries_2017.1.132/linux/mpi/intel64/lib/release_mt -Xlinker -rpath -Xlinker /usr/local/Intel_16/compilers_and_libraries_2017.1.132/linux/mpi/intel64/lib -Xlinker -rpath -Xlinker /opt/intel/mpi-rt/2107.0.0/intel64/lib/release_mt -Xlinker -rpath -Xlinker /opt/intel/mpi-rt/2017.0.0/intel64/lib;-Xlinker --enable-new-dtags -Xlinker -rpath -Xlinker...
> @rrsettgast - this is a problem with GCC and CUDA 10, fixed in CUDA 11. The correct workaround is to add the flag `-Xcompiler -mno-float128` to your CUDA compile...
Solution that works for me (but is kinda ugly and very specific to just handling `-Xlinker` flag): in `blt_add_target_link_flags` ```cmake if( ${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.13.0" ) # In CMake 3.13+, LINK_FLAGS...
Hi @Ron-Wang, Could you please check out the latest version of `develop` branch (don't forget to run `git submodule update` after you do), rebuild and try again? I don't know...
For what it's worth, here's how Trilinios/Tpetra is solving explicit instantiation problem. Theirs is a bit more difficult, since they need to instantiate for arbitrary combinations of Scalar/Local/Global/Policy types that...
> My question is to know whether or not we need some `cmake` involved or not in GEOSX for this case. No, I don't think we can avoid involving CMake....
> Wouldn't collecting the compilation units in their own folder and telling `cmake` to take them all be working? Yes, but someone needs to generate compilation units first, i.e. all...
> Although, do you mean you would want to do something like this (not manually move the files): > > ```shell > preprocess_xml some_file_with_relative_parameters.xml -c /some/other/path/file_with_fixed_relative_paths.xml > ``` > >...
> * Is `m_fluxEstimate` used anywhere? It seems to me that it is initialized using the default constructor ([here](https://github.com/GEOSX/GEOSX/blob/d752a5e5d8255ef9d7827c5adb5cdf7f41f5e713/src/coreComponents/physicsSolvers/fluidFlow/FlowSolverBase.cpp#L79)) but never updated. It's an input parameter used in hydrofracturing tests....
@rrsettgast this will be auto closed by @francoishamon's PR (which we need to review)