File tree 6 files changed +18
-17
lines changed
6 files changed +18
-17
lines changed Original file line number Diff line number Diff line change @@ -516,7 +516,7 @@ void ConnGrowth::printRadii() const {
516
516
}
517
517
#else // !USE_GPU
518
518
for (int i = 0 ; i < radiiSize; i++) {
519
- cout << " radii[" << i << " ] = " << radii-> theVector [i] << endl;
519
+ cout << " radii[" << i << " ] = " << (* radii) [i] << endl;
520
520
}
521
521
#endif // !USE_GPU
522
522
}
Original file line number Diff line number Diff line change @@ -352,16 +352,15 @@ void ConnGrowth::save(Archive & archive) const {
352
352
}
353
353
// serialization
354
354
archive (radiiVector);
355
- #else
355
+ #else // !USE_GPU
356
356
// uses vector to save radii
357
357
vector<BGFLOAT> radiiVector;
358
358
for (int i = 0 ; i < radiiSize; i++) {
359
- // access CPU radii in VectorMatrix
360
- radiiVector.push_back (radii->theVector [i]);
359
+ radiiVector.push_back ((*radii)[i]);
361
360
}
362
361
// serialization
363
- archive (radiiVector);
364
- #endif
362
+ archive (radiiVector);
363
+ #endif // !USE_GPU
365
364
}
366
365
367
366
/* *
@@ -387,7 +386,7 @@ void ConnGrowth::load(Archive & archive) {
387
386
for (int i = 0 ; i < radiiSize; i++) {
388
387
radii[i] = radiiVector[i];
389
388
}
390
- #else
389
+ #else // !USE_GPU
391
390
// uses vector to load radii
392
391
vector<BGFLOAT> radiiVector;
393
392
@@ -399,11 +398,11 @@ void ConnGrowth::load(Archive & archive) {
399
398
cerr << " Failed deserializing radii. Please verify totalNeurons data member in SimulationInfo class." << endl;
400
399
throw cereal::Exception (" Deserialization Error" );
401
400
}
402
-
401
+
403
402
// assigns serialized data to objects
404
403
for (int i = 0 ; i < radiiSize; i++) {
405
- radii-> theVector [i] = radiiVector[i];
406
- }
407
- #endif
404
+ (* radii) [i] = radiiVector[i];
405
+ }
406
+ #endif // !USE_GPU
408
407
}
409
408
Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ class Model : public IModel
166
166
// kind of a hack to do error handling for read params
167
167
int m_read_params;
168
168
169
- // 2019/12/21 Modified access level to puclic for allowing the access of Connections() and Layout() when calling Connections::createSynapsesFromWeights() method in BGDriver
169
+ // 2019/12/21 Modified access level to public for allowing the access of Connections() and Layout() when calling Connections::createSynapsesFromWeights() method in BGDriver
170
170
public:
171
171
/* *
172
172
* Pointer to the Connection object.
Original file line number Diff line number Diff line change @@ -124,4 +124,4 @@ class Matrix
124
124
*/
125
125
ostream& operator<<(ostream& os, const Matrix& obj);
126
126
127
- #endif
127
+ #endif
Original file line number Diff line number Diff line change @@ -378,18 +378,15 @@ class VectorMatrix : public Matrix
378
378
using Matrix::rows;
379
379
using Matrix::columns;
380
380
381
- // 2020/2/9 changed *theVector access level to public due to serialization/deserialization of radii in the ConnGrowth class
382
- public:
381
+ private:
383
382
/* * Pointer to dynamically allocated 1D array */
384
383
BGFLOAT *theVector;
385
384
386
- private:
387
385
/* * The number of elements in "theVector" */
388
386
int size;
389
387
390
388
/* * A normal RNG for the whole class */
391
389
static Norm nRng;
392
390
393
391
};
394
-
395
392
#endif
Original file line number Diff line number Diff line change @@ -115,4 +115,9 @@ class IAllSynapsesProps
115
115
* @param iSyn Index of the synapse to print out.
116
116
*/
117
117
virtual void writeSynapseProps (ostream& output, const BGSIZE iSyn) const = 0;
118
+
119
+ /* *
120
+ * Prints SynapsesProps data.
121
+ */
122
+ virtual void printSynapsesProps () const = 0;
118
123
};
You can’t perform that action at this time.
0 commit comments