Skip to content

Commit e9270ed

Browse files
committed
fix workflow?
1 parent 4a36650 commit e9270ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/work_queue.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#include "../include/work_queue.h"
22
#include "../include/types.h"
33

4-
#include <string.h>
4+
#include <string>
55
#include <chrono>
66
#include <cassert>
7+
#include <cstdio>
78

89
WorkQueue::WorkQueue(size_t total_batches, size_t batch_size, size_t bpe) :
910
len(total_batches / bpe + total_batches % bpe), max_batch_size(batch_size), batch_per_elm(bpe) {

0 commit comments

Comments
 (0)