We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It looks like this line is wrong and should be
numChunks = (numRequestedElements + NUM_ELEMENTS_PER_BUFFER_CHUNK - 1) / NUM_ELEMENTS_PER_BUFFER_CHUNK;
otherwise it simply adds 0 all the time and doesn't do what it's supposed to do.
Vitis_Libraries/quantitative_finance/L3/src/models/cf_b76/src/xf_fintech_cf_b76.cpp
Line 373 in a60e1df
The text was updated successfully, but these errors were encountered:
Actually, it works if and only if NUM_ELEMENTS_PER_BUFFER_CHUNK = 1 otherwise fails in every other case.
Sorry, something went wrong.
Squashed 'hpc' changes from 850ee7b..337288c (#1052)
1af7ce6
337288c update (#189) Co-authored-by: sdausr <[email protected]>
No branches or pull requests
It looks like this line is wrong and should be
numChunks = (numRequestedElements + NUM_ELEMENTS_PER_BUFFER_CHUNK - 1) / NUM_ELEMENTS_PER_BUFFER_CHUNK;
otherwise it simply adds 0 all the time and doesn't do what it's supposed to do.
Vitis_Libraries/quantitative_finance/L3/src/models/cf_b76/src/xf_fintech_cf_b76.cpp
Line 373 in a60e1df
The text was updated successfully, but these errors were encountered: