- Jul 05, 2016
-
-
Sam Yates authored
Defines a TRACE(...) macro that, when enabled at compile time with -DWITH_TRACE, prints to std::cerr the location in the source, a time stamp, and the values of any variables given to the macro. Uses a mutex to protect against simultaneous writes to std::cerr when TBB is enabled; it is not optimized for speed.
-
- Jul 01, 2016
-
-
Ben Cumming authored
Use library's own version of assert.
-
Ben Cumming authored
Unit tests for probe functionality
-
Sam Yates authored
-
Sam Yates authored
-
Sam Yates authored
* Also exposes current values from fvm_cell by segment location.
-
- Jun 30, 2016
-
-
w-klijn authored
Feature/spike handling
-
Benjamin Cumming authored
* change `probe_sort` enum to scoped enum - renamed to `probeKind` - refactored out of class - updated coding guidelines wiki with enum rules * refactor `std::pair` into structs with meaningfull name types in `cell.hpp` - not just probes: stimulii and detectors too. * add profiling region around sampling in `cell_group` * change output data format for traces to json * remove white space at end of lines (looking at you Sam)
-
Ben Cumming authored
Feature/probes
-
Ben Cumming authored
Fix linking of MPI libraries for tests and validation.
-
- Jun 29, 2016
- Jun 28, 2016
-
-
Sam Yates authored
Sidesteps NDEBUG versus assert() issue; EXPECTS macros are now enabled via a CMake configuration option -DWITH_ASSERTIONS=ON, corresponding to the preprocessor define -DWITH_ASSERTIONS in the code itself. (Note, with assertions enabled, one of the existing tests in test_algorithms.cpp aborts.)
-
Sam Yates authored
-
Sam Yates authored
-
Benjamin Cumming authored
-
Benjamin Cumming authored
- profiler generates one report per MPI rank - estimates the thread imbalance per rank - generates a json file with profiling stats for each rank - works with/without MPI - works with/without TBB Conflicts: miniapp/miniapp.cpp
-
Benjamin Cumming authored
- move definition of `global_policy` to header file src/communication/global_policy.hpp - the `#ifdef WITH_MPI` guards go there so that - they don't pollute user code - they are available throughout the application - small cleanup of a couple of style points in the mpi code
-
Benjamin Cumming authored
-
Sam Yates authored
* Make global_policy methods static * Move global_policy init/finalize into static methods * Make miniapp use only global_policy methods for setup, rank, etc.
-
- Jun 27, 2016
-
-
Sam Yates authored
* First implementation of simple current/voltage probe interface * Sample a specific collection of voltage or current values at independent dt (current implementation chooses to provide at most one sample per simulation dt per request.) * Miniapp uses samplers to write soma and dendrite membrane potentials from first three cells. * Also: fix noncompliant use of nullptr -> bool conversion in test_optional.cpp
-
Sam Yates authored
-
Benjamin Cumming authored
-
Benjamin Cumming authored
-
- Jun 24, 2016
-
-
Sam Yates authored
-
Ben Cumming authored
Feature/spike handling
-
Sam Yates authored
-
Sam Yates authored
-
Benjamin Cumming authored
-
Benjamin Cumming authored
-
Sam Yates authored
* Add WITH_MPI CMake option to enable MPI code in application * Use find_package(MPI) and set up flags, etc. for MPI * Extra defines to disable the inclusion of C++ MPI headers for MPICH and OpenMPI. * Fix signed/unsigned compare warning in algorithms.hpp
-
Sam Yates authored
-
Benjamin Cumming authored
Added MPI support to the miniapp - added ring model and all-to-all model - started refactoring general model setup steps into a model class in miniapp - optional -DWITH_MPI to turn on MPI support
-
- Jun 23, 2016
-
-
Ben Cumming authored
Low-level algorithms for manipulating cell trees.
-
Vasileios Karakasis authored
-
Benjamin Cumming authored
-
Ben Cumming authored
Feature/optional review
-
- Jun 22, 2016
-
-
Benjamin Cumming authored
-
- Jun 17, 2016
-
-
Sam Yates authored
-
Vasileios Karakasis authored
-