| 65 | } // namespace |
| 66 | |
| 67 | weights::weights() : m_comm(nullptr), m_frozen(false), m_sharded(false) |
| 68 | { |
| 69 | |
| 70 | // Initialize weights name |
| 71 | static int num_weights = 0; |
| 72 | m_name = "weights" + std::to_string(num_weights); |
| 73 | num_weights++; |
| 74 | } |
| 75 | |
| 76 | weights::weights(lbann_comm& comm) : weights() |
| 77 | { |
no test coverage detected