samuelpmishLLNL
samuelpmishLLNL
on CUDA11 w/ MSVC 2019, I get a lot of warnings when using trove: ``` [build] F:\fem_performance_tests\extern\trove\trove/warp.h(42): warning: integer conversion resulted in a change of sign [build] [build] F:\fem_performance_tests\extern\trove\trove/shfl.h(53): warning:...
In serac, we're running into compilation issues on OpenMP targets when CUDA is enabled. The actual error is: ``` g++: error: unrecognized command line option ‘-fopenmp=libomp’ ``` It looks like...
Hi, I'm working on [serac](https://github.com/LLNL/serac), and running into a compilation bug in RAJA (which we're not using directly, but rather through axom). ``` [build] /path/to/RAJA/policy/tensor/arch/avx512/avx512_int32.hpp:213:33: error: cannot convert a value...
On an Ubuntu 20.04 machine, with cuda 11.4 and g++ 9.3, I follow the instructions on the README: ```bash $ git clone [email protected]:LLNL/CHAI.git ... $ cd CHAI $ git submodule...
Re: https://github.com/LLNL/serac/issues/774 Here's a summary of some of the issues and which have been addressed so far in this PR (:heavy_check_mark: => addressed, :x: => still working): :heavy_check_mark: 1. (Bug)...
Kenny has been wrapping the solid mechanics module in LiDO and mentioned that he ran into a few issues, I'm summarizing a few of them here so I don't forget...
re: https://github.com/LLNL/serac/issues/761 It looks like by default, `uberenv` builds everything as `RelWithDebInfo`, so the TPLs produce huge binaries: ```sh sam@provolone:~/code/serac_libs_before/gcc-9.3.0/conduit-0.8.3-wqhg2i6ady424csssfpjlggcjflt42jx/lib$ ls -la ... -rw------- 1 sam sam 64230114 Aug 4...
When configuring serac with `ENABLE_CODEVELOP` on the `develop` branch, CMake emits the error: ``` ... [cmake] -- Serac Code Checks: ON [cmake] -- Configuring done [cmake] CMake Error: install(EXPORT "serac-targets"...
Brandon mentioned to me earlier that his debugger was struggling to open up some of serac's tests. He mentioned that they either took an unusually long time to start, or...
The main point of this PR is to change the implementation of the core finite element kernels from (pseudocode, using heat equation as an example): ```cpp for (auto element :...