We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c354357 commit 28e9b86Copy full SHA for 28e9b86
DirectProgramming/C++SYCL_FPGA/include/streaming_qrd.hpp
@@ -304,10 +304,7 @@ struct StreamingQRD {
304
if (i_gt_0[fanout_bank_idx] && j_ge_0[fanout_bank_idx]) {
305
col[k] = a_compute[j].template get<k>();
306
}
307
- // Using an else statement makes the compiler throw an
308
- // inexplicable warning when using non complex types:
309
- // "Compiler Warning: Memory instruction with unresolved
310
- // pointer may lead to bad QoR."
+
311
if (!i_gt_0[fanout_bank_idx] && j_ge_0[fanout_bank_idx]) {
312
col[k] = a_load[j].template get<k>();
313
0 commit comments