Skip to content

Commit 7d7037c

Browse files
committed
[Benchmark] Remove data size validation from import/export benchmark
1 parent 8feb23a commit 7d7037c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

benchmarks/communication_benchmark.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,6 @@ static void BM_ImportExportLargeData(benchmark::State& state) {
104104
// Perform the import operation (this is what we want to measure)
105105
main_comm->ImportData(import_info, data_container);
106106

107-
// Validate that the imported data has the expected size.
108-
assert(data_container.GetData().size() == exp_data[0].size());
109-
110107
// Disconnect the main communication
111108
Info disconnect_info;
112109
main_comm->Disconnect(disconnect_info);

0 commit comments

Comments
 (0)