GeNN  4.9.0
GPU enhanced Neuronal Networks (GeNN)
connectors.h
Go to the documentation of this file.
1 #pragma once
2 
3 // Standard C++ includes
4 #include <vector>
5 
6 // Standard C includes
7 #include <cstdint>
8 
9 // Forward declarations
10 struct SparseProjection;
11 
12 namespace pugi
13 {
14  class xml_node;
15 }
16 
17 namespace filesystem
18 {
19  class path;
20 }
21 
22 //------------------------------------------------------------------------
23 // SpineMLSimulator::Connectors
24 //------------------------------------------------------------------------
26 {
27 namespace Connectors
28 {
29  unsigned int create(const pugi::xml_node &node, double dt, unsigned int numPre, unsigned int numPost,
30  unsigned int **rowLength, unsigned int **ind, uint8_t **delay, const unsigned int *maxRowLength,
31  const filesystem::path &basePath, std::vector<unsigned int> &remapIndices);
32 } // namespace Connectors
33 } // namespace SpineMLSimulator
unsigned int create(const pugi::xml_node &node, double dt, unsigned int numPre, unsigned int numPost, unsigned int **rowLength, unsigned int **ind, uint8_t **delay, const unsigned int *maxRowLength, const filesystem::path &basePath, std::vector< unsigned int > &remapIndices)
Definition: connectors.cc:210
Definition: connectors.h:25
Definition: generateModules.h:16
Definition: connectors.h:12