Hanyang (Eric) Xu
Hanyang (Eric) Xu
### Description Update the FPGA mvdr_beamforming reference design to use code from the shared include directory. * use shared library resources streaming_qrd.hpp, tuple.hpp, and unrolled_loop.hpp * updated streaming_qrd.hpp to accept...
As per requested, convert _snake_case code to CamelCase for template arguments. Valid since template arguments don't have the case that it will collide with customer code.
For example, I see some .cpp files have .resize() before the comment "// Add your code here". I wish I could use .reserve() instead since I imagine it would make...
I read the pseudo-code for distance queries and was wondering why do we have the if statement "if d_s < d". Wouldn't the first leaf to be dequeued by the...
I want to modify the MLIR generated by --cuda-lower --cpuify and then take it back to the compiler and generate the opemp executable. Is there a way to do that?...
I have a simple CUDA program here that performs a simple reduction: ``` #include #include // CUDA kernel for performing reduction (sum) of an array __global__ void reduceSum(int *g_input, int...
Fixes #145511 Note that there are still two instances of --passes=slp-vectorizer,instcombine left unchanged because it seems that the tests are meant to run in conjunction with instcombine and removing instcombine...
I acknowledge that this project is not maintained anymore but I still want to try my best to reproduce the results as I have read the paper. What is the...