Cyrus Harrison
Cyrus Harrison
Using blt fb5633c (master as of 6/13/19) I have the following set in a host-config file: ``` set(CUDA_ARCH "sm_60" CACHE STRING "") set(CMAKE_CUDA_ARCH "sm_60" CACHE STRING "") set(CUDA_NVCC_FLAGS "-arch=sm_60" CACHE...
In `blt_add_lib`, we can't use `DEPENDS_ON openmp cuda` b/c this will end up passing the openmp flags to nvcc. But you can do the following: `DEPENDS_ON cuda` ``` if(ENABLE_OPENMP) if(CUDA_FOUND)...
Ran into a fun issue in a docker container, openmpi won't let mpiexec run if you are root: ``` debug/tests/blt_mpi_smoke" 3: Test timeout computed to be: 1500 3: -------------------------------------------------------------------------- 3:...
Still narrowing in on the exact issue, but I think this is something we should resolve in BLT's copy of gtest. Here are more details: https://github.com/LLNL/conduit/pull/238 And a simpler example...
add basic sphinx and doxygen projects to blt-test, to exercise our docs support
``` ../../lib/libgtest.a(gtest-all.cc.o): In function `testing::internal::StreamingListener::SocketWriter::MakeConnection()': gtest-all.cc:(.text+0x3af47): warning: Using 'getaddrinfo' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking ``` [ 4%] Built...
It could simply install (copy) blt to a dest dir, and help folks using via: `-DBLT_SOURCE_DIR`
### Description Resolves #17686 (WIP) ### Type of change * [ ] Bug fix~~ * [ ] New feature~~ * [ ] Documentation update~~ * [x] Other~~ Refactoring. ### How...
Need to handle complex AMR domain layouts. Place holder issue for @JustinPrivitera and @cyrush to capture future details.
### Describe the bug Open example.silo from tutorial data Add isosurface operator with default options. Export as blueprint with no additional options. Export will fail b/c internal mesh blueprint fails...