Skip to content
Snippets Groups Projects
Commit e19e8b96 authored by Yaman Umuroglu's avatar Yaman Umuroglu
Browse files

[Test] fix npy2apintstream tests by including cstddef

may be a Vivado HLS version-dependent problem...
parent e8785463
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,7 @@ def make_npy2apintstream_testcase(ndarray, dtype):
npy_type = npyt_to_ct[str(ndarray.dtype)]
shape_cpp_str = str(shape).replace("(", "{").replace(")", "}")
test_app_string = []
test_app_string += ["#include <cstddef>"]
test_app_string += ['#include "ap_int.h"']
test_app_string += ['#include "stdint.h"']
test_app_string += ['#include "hls_stream.h"']
......
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