Randolph Settgast

Results 32 issues of Randolph Settgast

When trying to run cmake for various BLT projects (GEOSX, RAJA, CHAI) I get the following error: ``` -- Check for working CUDA compiler: /data_local/sw/cuda/10.1.243/bin/nvcc -- Check for working CUDA...

flags
cuda

I recently had some good clean fun getting blas and lapack packages properly linked into our code project. As part of this, I eventually just make `FindBlas.cmake` and `FindLAPACK.cmake` files...

If you have a lib that depends on cuda: ```blt_add_library( NAME mylib DEPENDS_ON cuda )``` and a executable that depends on mylib: ```blt_add_executable( NAME myex DEPENDS_ON mylib)``` then myex doesn't...

Sometimes when running the sphinx make target generated by blt, modified dependencies appear to miss being reprocessed by sphinx. My basis for this statement is that I can be modifying...

In order to most effeciently run a wellbore simulation, we should have a structured mesh option with an IJK interface. Key components are: 1. Structured mesh in cartesian and cylindrical...

type: feature

The finite element formulations PR #1014 needs to be extended a bit. The following tasks should be completed soon: - [ ] Provide shape function gradient methods for the triangle...

**Describe the issue** The LAI objects have `set/insert/add` interface functions that take values, pointers, and arrayslice. This either requires the interface function to copy the data and move it to...

**What is the requested feature?** We have various functions that get called after going through a series of "pass thru" template, which are essentially a large manual `if/elseif/.../else` block (edit...not...

**Describe the issue** At some point we were having problems running nsightcompute when dynamically linking our libraries, so we switched to static linking. This is undesirable for two reasons: 1....

type: build system

**Is your feature request related to a problem? Please describe.** Currently, the tolerance scheme is as follows: ``` Entries x1 and x2 are considered equal iff |x1 - x2|

type: testing