Skip to content

Commit

Permalink
use accurate wording for comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Fangjia Shen committed Apr 14, 2022
1 parent 87f2830 commit d824618
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpu-simulator/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ int main(int argc, const char **argv) {
unsigned i = 0;
while (i < commandlist.size() || !kernels_info.empty()) {
//gulp up as many commands as possible - either cpu_gpu_mem_copy
//or kernel_launch - until the vector "kernels_info" has exceeded
//or kernel_launch - until the vector "kernels_info" has reached
//the window_size or we have read every command from commandlist
while (kernels_info.size() < window_size && i < commandlist.size()) {
trace_kernel_info_t *kernel_info = NULL;
Expand Down

0 comments on commit d824618

Please sign in to comment.