MCPcopy Create free account
hub / github.com/definelicht/hlslib / SecondKernel

Function SecondKernel

xilinx_test/kernels/MultipleKernels.cpp:14–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12}
13
14void SecondKernel(hlslib::Stream<uint64_t> &stream, uint64_t *memory, int n) {
15 #pragma HLS INTERFACE axis port=stream
16 #pragma HLS INTERFACE m_axi port=memory offset=slave bundle=gmem1
17 for (int i = 0; i < n; ++i) {
18 #pragma HLS PIPELINE II=1
19 memory[i] = 2 * stream.Pop();
20 }
21}

Callers

nothing calls this directly

Calls 1

PopMethod · 0.80

Tested by

no test coverage detected