Commit da23619a by T.J. Mercier Committed by Tianqi Chen

Add check to ensure input file was successfully opened in NNVM deploy code demo (#4315)

parent 888a3c35
...@@ -59,9 +59,11 @@ An example in c++. ...@@ -59,9 +59,11 @@ An example in c++.
#include <tvm/runtime/registry.h> #include <tvm/runtime/registry.h>
#include <tvm/runtime/packed_func.h> #include <tvm/runtime/packed_func.h>
#include <algorithm>
#include <fstream> #include <fstream>
#include <iterator> #include <iterator>
#include <algorithm> #include <stdexcept>
#include <string>
int main() int main()
{ {
...@@ -97,7 +99,9 @@ int main() ...@@ -97,7 +99,9 @@ int main()
int64_t in_shape[4] = {1, 3, 224, 224}; int64_t in_shape[4] = {1, 3, 224, 224};
TVMArrayAlloc(in_shape, in_ndim, dtype_code, dtype_bits, dtype_lanes, device_type, device_id, &x); TVMArrayAlloc(in_shape, in_ndim, dtype_code, dtype_bits, dtype_lanes, device_type, device_id, &x);
// load image data saved in binary // load image data saved in binary
std::ifstream data_fin("cat.bin", std::ios::binary); const std::string data_filename = "cat.bin";
std::ifstream data_fin(data_filename, std::ios::binary);
if(!data_fin) throw std::runtime_error("Could not open: " + data_filename);
data_fin.read(static_cast<char*>(x->data), 3 * 224 * 224 * 4); data_fin.read(static_cast<char*>(x->data), 3 * 224 * 224 * 4);
// get the function from the module(set input data) // get the function from the module(set input data)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment