Hi!
I am using DumpLayerConnections() with two layers with around 100x100 nodes each layer.
Every layer node is connected to around 100 nodes on the other layer. Calling the
DumpLayerConnections() takes around 10-15 minutes to save connections to file. I know it
is a too general request, but it would be nice if this function is faster.
In my particular case, I obtain these connections in a previous step using
GetConnections(). I guess (hence I am probably wrong) that DumpLayerConnections() calls
GetConnections(). If I am right, I believe it could be an interesting enhancement to
implement a DumpLayerConnections() function with input parameters that are a set of
connections, that is, something like:
myconn = nest.GetConnections(layer1, layer2, ...)
nest.DumpLayerConnections(myconn)
Thanks a lot in advance!
Xavier