Flag to disable some code sections at compile time.
Some methods, such as coreneuron::scopmath::sparse::getelm(...), decide at runtime whether they are simply accessors, or if they dynamically modify the matrix in question, possibly allocating new memory. Typically the second mode will be used during model initialisation, while the first will be used during computation/simulation. Compiling the more complicated code for the second mode can be problematic for targets such as GPU, where dynamic allocation and global state are complex. This enum is intended to be used as a template parameter to flag (at compile time) when this code can be omitted.
Enumerator |
---|
all | |
compute_only | |
Definition at line 28 of file errcodes.h.