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 abab8d6 commit 0c3a036Copy full SHA for 0c3a036
DirectProgramming/C++SYCL_FPGA/include/streaming_cholesky_inversion.hpp
@@ -164,7 +164,9 @@ struct StreamingCholeskyInversion {
164
int diagonal_size = (kColumns > raw_latency ? kColumns : raw_latency) - 1;
165
int col = diagonal_number;
166
int row = 0;
167
-
+
168
169
+ [[intel::initiation_interval(1)]] // NO-FORMAT: Attribute
170
[[intel::ivdep(raw_latency)]] // NO-FORMAT: Attribute
171
for (int it = 0; it < kTotalIterations + kInitIterations; it++) {
172
// Only perform work when in not dummy iterations
@@ -267,4 +269,4 @@ struct StreamingCholeskyInversion {
267
269
268
270
} // namespace fpga_linalg
271
-#endif /* __STREAMING_CHOLESKY_INVERSION_HPP__ */
272
+#endif /* __STREAMING_CHOLESKY_INVERSION_HPP__ */
0 commit comments