Skip to content
Snippets Groups Projects
Commit e0af522d authored by Nathan Thoumine's avatar Nathan Thoumine
Browse files

Fix includes in Graph.cpp and BatchSteam.hpp

parent 2ea9df3e
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,6 @@
#define BATCH_STREAM_H
#include "NvInfer.h"
#include "dnn_utils.hpp"
#include <algorithm>
#include <assert.h>
#include <stdio.h>
......@@ -67,8 +66,7 @@ public:
}
int x = _batchCount;
for (int i = 0; i < skipCount; i++)
next();
for (std::size_t i = 0; i < skipCount; ++i) next();
_batchCount = x;
}
......
#include "Graph.hpp"
#include <fstream>
#include <sstream>
#include "BatchStream.hpp"
#include "IInt8EntropyCalibrator.hpp"
#include <dirent.h>
Graph::Graph(std::string const& filePath,
unsigned int device_id,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment