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

[StreamingFC] assume weights/thresholds already as expected

parent a7113667
No related branches found
No related tags found
No related merge requests found
......@@ -31,8 +31,7 @@ class StreamingFCLayer_Batch(HLSCustomOp):
temp_files.append("input_{}.npy".format(in_ind))
elif in_ind == 1:
weights = context[inputs]
self.WMEM = weights.shape[2]
weights = np.transpose(weights, (1, 2, 0))
self.WMEM = weights.shape[1]
weights = np.expand_dims(weights, 0)
weights = numpy_to_hls_code(
weights, DataType.BINARY, "weights", True, True
......@@ -50,8 +49,7 @@ class StreamingFCLayer_Batch(HLSCustomOp):
else:
thresholds = context[inputs]
self.TMEM = thresholds.shape[0]
thresholds = np.transpose(thresholds, (1, 0, 2))
self.TMEM = thresholds.shape[1]
thresholds = np.expand_dims(thresholds, 0)
thresholds = numpy_to_hls_code(
thresholds, DataType.BINARY, "thresholds", True, True
......
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