Skip to content

Commit cb8dabe

Browse files
committed
changed_conngrowth_class_radii_access_to_elements
1 parent 2722675 commit cb8dabe

File tree

6 files changed

+18
-17
lines changed

6 files changed

+18
-17
lines changed

Connections/ConnGrowth.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ void ConnGrowth::printRadii() const {
516516
}
517517
#else // !USE_GPU
518518
for (int i = 0; i < radiiSize; i++) {
519-
cout << "radii[" << i << "] = " << radii->theVector[i] << endl;
519+
cout << "radii[" << i << "] = " << (*radii)[i] << endl;
520520
}
521521
#endif // !USE_GPU
522522
}

Connections/ConnGrowth.h

+9-10
Original file line numberDiff line numberDiff line change
@@ -352,16 +352,15 @@ void ConnGrowth::save(Archive & archive) const {
352352
}
353353
// serialization
354354
archive(radiiVector);
355-
#else
355+
#else // !USE_GPU
356356
// uses vector to save radii
357357
vector<BGFLOAT> radiiVector;
358358
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]);
361360
}
362361
// serialization
363-
archive(radiiVector);
364-
#endif
362+
archive(radiiVector);
363+
#endif // !USE_GPU
365364
}
366365

367366
/**
@@ -387,7 +386,7 @@ void ConnGrowth::load(Archive & archive) {
387386
for(int i = 0; i < radiiSize; i++) {
388387
radii[i] = radiiVector[i];
389388
}
390-
#else
389+
#else // !USE_GPU
391390
// uses vector to load radii
392391
vector<BGFLOAT> radiiVector;
393392

@@ -399,11 +398,11 @@ void ConnGrowth::load(Archive & archive) {
399398
cerr << "Failed deserializing radii. Please verify totalNeurons data member in SimulationInfo class." << endl;
400399
throw cereal::Exception("Deserialization Error");
401400
}
402-
401+
403402
// assigns serialized data to objects
404403
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
408407
}
409408

Core/Model.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ class Model : public IModel
166166
// kind of a hack to do error handling for read params
167167
int m_read_params;
168168

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
170170
public:
171171
/**
172172
* Pointer to the Connection object.

Matrix/Matrix.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,4 @@ class Matrix
124124
*/
125125
ostream& operator<<(ostream& os, const Matrix& obj);
126126

127-
#endif
127+
#endif

Matrix/VectorMatrix.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -378,18 +378,15 @@ class VectorMatrix : public Matrix
378378
using Matrix::rows;
379379
using Matrix::columns;
380380

381-
// 2020/2/9 changed *theVector access level to public due to serialization/deserialization of radii in the ConnGrowth class
382-
public:
381+
private:
383382
/** Pointer to dynamically allocated 1D array */
384383
BGFLOAT *theVector;
385384

386-
private:
387385
/** The number of elements in "theVector" */
388386
int size;
389387

390388
/** A normal RNG for the whole class */
391389
static Norm nRng;
392390

393391
};
394-
395392
#endif

Synapses/IAllSynapsesProps.h

+5
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,9 @@ class IAllSynapsesProps
115115
* @param iSyn Index of the synapse to print out.
116116
*/
117117
virtual void writeSynapseProps(ostream& output, const BGSIZE iSyn) const = 0;
118+
119+
/**
120+
* Prints SynapsesProps data.
121+
*/
122+
virtual void printSynapsesProps() const = 0;
118123
};

0 commit comments

Comments
 (0)