Kenny Weiss
Kenny Weiss
I just noticed that OpenMP is disabled in our CUDA host-configs on blueos My understanding is that they're compatible, and I thought OpenMP was enabled in these configurations. Did we...
The `fprettify` project -- https://github.com/pseewald/fprettify -- is a python-based formatter/styler for Fortran files. We can add support for it when the user provides an `FPRETTIFY_EXECUTABLE` variable to blt. Projects that...
@tomstitt noticed that CMake was not properly using `isystem` for system includes with the XL compiler and discovered that this can be overridden via the CMake variable: `CMAKE_INCLUDE_SYSTEM_FLAG_CXX` e.g. ```cmake...
The Axom project recently fixed a bug related to `ENV` variables that were not correctly setup -- https://github.com/LLNL/axom/pull/1168 It revealed that `blt_list_append` generates a `FATAL_ERROR` when attempting to append empty...
There might be a bug with how `blt_add_library` propagates dependencies for object libraries. My specific case is for an object library that depends on an imported library with its own...
# Summary - This PR is a feature - It adds an `annotations` API to support profiling in Axom - It relies on [caliper](https://github.com/llnl/caliper) for performance profiling and [adiak](https://github.com/llnl/adiak) for...
Axom currently vendors a copy of the [fmt](https://fmt.dev/) library in the `/src/thirdparty/axom/fmt` directory and places it under the `axom::fmt` namespace to avoid clashes with other common libraries that use `fmt`,...
When debugging problems, it can be helpful to have a host-config with sanitizers enabled, e.g. `lsan`, `asan`, `ubsan`. We should probably add it for LLNL's toss4 cluster with clang or...
We have a host-config in the `other` directory for clang-ifort on LLNL's toss4 platform. I'd like to make sure it works and move it up a directory to ensure that...
In working through a user configuration error, I discovered a bug in CUDA-based configurations of axom without RAJA. It shows up in a few places, e.g. ``` /src/axom/primal/tests/primal_zip.cpp(524): error: namespace...