Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimmy Mu committed Feb 19, 2021
1 parent 265b324 commit 7108009
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions benchmarks/dpe_bench.cc
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,17 @@ int main(int argc, char **argv) {
<< "Choose small blob size range (0, 64KB] to test.\n\n";
}

blob_sizes = testing::GenFixedTotalBlobSize(dpe_total_blob_size, blob_range);
blob_sizes = testing::GenFixedTotalBlobSize(dpe_total_blob_size,
blob_range);
total_placed_size = dpe_total_blob_size;
} else {
blob_sizes.resize(dpe_total_blob_size);
fill(blob_sizes.begin(), blob_sizes.end(), each_blob_size);
total_placed_size = each_blob_size * dpe_total_num_blobs;
}

testing::TargetViewState tgt_state = testing::InitDeviceState(dpe_total_targets);
testing::TargetViewState tgt_state =
testing::InitDeviceState(dpe_total_targets);

assert(tgt_state.num_targets == dpe_total_targets);

Expand Down

0 comments on commit 7108009

Please sign in to comment.