Skip to content

Commit e4c08e1

Browse files
remove more messages
1 parent 7e9a36d commit e4c08e1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/DistributedNDArray.hxx

+4-4
Original file line numberDiff line numberDiff line change
@@ -232,15 +232,15 @@ void DistributedNDArray<T, dims, DenseT, SparseT, SerializerT>::RebuildChunks(co
232232
dense_t current_chunk = retrieveChunk(chunk_index);
233233

234234
if(actual_chunk_shape == current_chunk.shape()) {
235-
std::cout << "chunk already has the correct size, keep it" << std::endl;
235+
// std::cout << "chunk already has the correct size, keep it" << std::endl;
236236
chunks_to_keep.push_back(m_chunk_index[chunk_index]);
237237
continue;
238238
}
239239

240-
std::cout << "now working on rebuild chunk with inds" << std::endl;
241-
std::cout << "chunk_inds_start = " << std::endl;
240+
// std::cout << "now working on rebuild chunk with inds" << std::endl;
241+
// std::cout << "chunk_inds_start = " << std::endl;
242242
chunk_inds_start.print();
243-
std::cout << "chunk_inds_end = " << std::endl;
243+
// std::cout << "chunk_inds_end = " << std::endl;
244244
chunk_inds_end.print();
245245

246246
dense_t chunk = range(chunk_inds_start, chunk_inds_end);

0 commit comments

Comments
 (0)