python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
The Zynq Book Tutorials Lab 4-C part adding directive problem
I am trying run zynq book tutorials lab 4 and c part in vivado hls (hls included vitis in new version) but when I right click in the step of adding directive as described in the book, the add directiv...
Kerim Turak
Votes: 0
Answers: 2
108-bit integer in test bench
I am using Vivado HLS 2018.3. I am defining 108-bit unsigned integer using ap_int.h library. In the test bench I am initializing a 108-bit variable as :
inData = 259614842926741381426524816461004;
Ho...
MAJID AHMAD
Votes: 0
Answers: 0
vivado HLS or SDsoc for use openCV
I want to do an image processing by openCV on FPGA . But I do not know if I should use the SDsoc method or the vivadoHLS method. The size of the images I am going to process is large and I want to sol...
tom
Votes: 0
Answers: 1
Different resource utilization shows in vivado hls and vivado
I implemented this loop calculation in vivado HLS.
For (i = 0; i < 59; i++){
#pragma HLS unroll
tmp = C[i];
For (j = 0; j < 3; j++){
#pragma HLS unroll
tmp = tmp + A[j][i] * B[j...
hdcoe
Votes: 0
Answers: 2