Giter VIP home page Giter VIP logo

fast-p2a's People

Contributors

fnonnenmacher avatar joosthooz avatar mythir avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Forkers

fnonnenmacher

fast-p2a's Issues

The high-performance snappy decoder does not support backpressure

This is a major issue especially when using multiple instances. We should consider removing the possibility of using this design altogether.
It has some more issues, such as needing to clear valid bits in BRAM after reset and each parquet page (it needs 512 cycles for that), and using much more BRAMs than conceptually needed (it uses a duplicate of the entire 64k data buffer instead of reconstructing data from a sliding window)

Pipeline the parallel prefix adder

The delta designs have a limited data width because of timing difficulty in the parallel prefix adder. However, it should be possible to pipeline this. In the last cycle of the pipeline, the final value of the previous addition is known. So it can be added to all the partial sums. (see figure below or also fig. 17 here: http://users.encs.concordia.ca/~asim/COEN_6501/Lecture_Notes/L2_Notes.pdf)

.-. .-. .-. .-.                                     
|1| |2| |3| |4| input                               
'-' '-' '-' '-'                                     
 | \ |   |   |                                      
(r) (+) (r) (r)                                     
 |   | \ |   |                                      
(r) (r) (+) (r)                                     
 |   |   | \ |                                      
(r) (r) (r) (+)                                     
 |   |   |   |                                      
(+) (+) (+) (+) <- (ppp)                            
 |   |   |   |\     ^                               
 |   |   |   | \    | update ppp
 |   |   |   |  '--'                                
 v   v   v   v                                      
.-. .-. .-. .-.                                     
|o| |o| |o| |o| output                              
'-' '-' '-' '-'                                     

(r) = register
(+) = addition (and register)
(ppp) = previous partial prefix (initialize with the start value)

Finish the write part of the AXI master reset isolation circuitry

A bit of circuitry has been added to AxiTop that allows 1 instance to be reset without taking down the whole AXI bus. But this only works for reads. It also stops instances from reading ahead much further after it finishes.
The reason this does not works for writes yet is that it is more complex (the circuit will need to keep track of an active bursts, so that it will generate the exact number of data beats that is expected due to the original write request), and because the design already waits for all the writes to finish before the done flag is asserted (and the software normally waits for the done flag before resetting). However, if an instance was improperly configured or gets stuck for some other reason, we still want to be able to reset it (although note that you can always reset the entire design).

Allow multiple instances with different configurations

Right now, it is not possible to pass different generics down to the multiple instances. Maybe it is possible to convert the configuration string into an array of such config strings, so that each column decoder can get its own config.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.