(c) 2015-2020. VG-Lab / URJC
SimiL consists of a library which is used to read brain simulation datasets. It is ready to be used with BlueConfig, specific HDF5 and CSV datasets. Latest version also loads remote streaming data using a REST API for an in-situ pipeline.
- HDF5
- Boost
- vmmlib(*)
- HDF5 1.10
(*) Note: These dependencies will be automatically downloaded and compiled with the project.
- Qt 5.X: including Qt5Core, Qt5Widgets
- Brion: enables BlueConfig support.
- ZeroEQ: enables ZeroEQ remote data exchange
SimiL has been succesfully built with GCC 6 and used on Ubuntu 16.04 / 18.04, Mac OSX Yosemite. The following steps should be enough to build it:
git clone --recursive https://github.com/vg-lab/SimIL.git SimiL
mkdir SimiL/build && cd SimiL/build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCLONE_SUBPROJECTS=ON
make
#include <simil/simil.h>
#ifdef SIMIL_USE_BRION
#include <simil/loaders/LoadblueConfigData.h>
#endif
#include <simil/loaders/LoadHDF5Data.h>
#include <simil/loaders/LoadCSVData.h>
simil::LoadSimData* importer;
if ( simtype == "-bc" )
{
importer = new simil::LoadblueConfigData( );
}else
if ( cmdoption == "-csv" )
{
importer = new simil::LoadCSVData( );
}
else if ( cmdoption == "-h5" )
{
importer = new simil::LoadHDF5Data( );
}
else //.. promt usage message ...
simil::SimulationData* simData =
importer->LoadSimulationData( path, secondaryPath );
std::cout << "Loaded GIDS: " << simData->gids( ).size( ) << std::endl;
std::cout << "Loaded positions: " << simData->positions( ).size( )
<< std::endl;