Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This attempts to create an oneAPI accelerator backend based on #1246, leaving the standard oneAPI backend largely unchanged. The oneAPI Accelerator backend
Sideband Signal Support
Utilizes
while
loop for always-on kernel execution.sop/eop
sideband signals for synchronization.io_parallel
mode, the while loop is added to the main kernel code,myproject.cpp
.io_stream
mode, wrapper layers,SidebandExtraction
andSidebandMerging
, are added to handle the sideband signals at the beginning and end of the loop. The standard layers remain unchanged, and they do not use sideband signals. The sidebands are passed directly from theSidebandExtraction
to theSidebandMerging
layers via a separate pipe. This is an overhead, though the pipe payload is only 2-bits wide, to try to minimize the overhead.Added DMA Kernels for Hardware Execution
DMA-based data movement for improved memory transfer:
DMA_convert_data
andDMA_convert_data_back
move data between host and FPGA efficiently.Modification to the way that testbench starts
Modification to the way that python bridge under way (but not yet complete). It uses the three kernels as above, including the DMA transfers. However, at the moment the compilation is still software emulation only, and the function calls are for one input set at a time. Support will be added to be able to call the function with a sequence of inputs and to compile the bridge to run on hardware.
Utility Functions for Compile-Time Type Extraction
Type of change
Tests
This is still in progress, not automated. We should make sure we do not break other tests, though.
Checklist
pre-commit
on the files I edited or added.