Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rohankalbag/algorithms-to-hardware
Algorithmic Design of Digital Systems - Autumn Semester 2023 - Indian Institute of Technology Bombay
https://github.com/rohankalbag/algorithms-to-hardware
digital-design hardware-acceleration high-level-synthesis
Last synced: 3 days ago
JSON representation
Algorithmic Design of Digital Systems - Autumn Semester 2023 - Indian Institute of Technology Bombay
- Host: GitHub
- URL: https://github.com/rohankalbag/algorithms-to-hardware
- Owner: rohankalbag
- Created: 2023-08-29T06:03:23.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-03T15:07:49.000Z (12 months ago)
- Last Synced: 2023-12-03T17:24:11.363Z (12 months ago)
- Topics: digital-design, hardware-acceleration, high-level-synthesis
- Language: Makefile
- Homepage:
- Size: 55.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# High Level Synthesis using Algorithmic Assembly
## EE789 : Algorithmic Design of Digital Systems
### Course Instructor : Prof. Madhav P Desai
> [Algorithmic Assembly (AA)](https://github.com/madhavPdesai/ahir) is an Intermediate Representation (IR) for the AHIRv2 C to VHDL compiler which was developed at IIT Bombay
This contains my solutions to the course assignments
1. Design of [Shift and Add Multiplier](https://github.com/rohankalbag/ee789-iitb/blob/main/Assignment1/Question_1/Solution.pdf) and [Shift and Subtract Divider](https://github.com/rohankalbag/ee789-iitb/blob/main/Assignment1/Question_2/Solution.pdf) Circuit using AA
2. Hardware Acceleration of [Matrix Multiplication](https://github.com/rohankalbag/ee789-iitb/blob/main/Assignment2/Solution.pdf) using Loop Optimizations, Parallelism in AA### Frequently Used Commands
```bash
tar -xvzf path/filename.tgz
docker exec -it container_name /bin/bash
``````bash
# for x86 based Processors
sudo docker run -it -v $(pwd)/:/home/examples/ ee789_ahir_img
``````bash
# for arm64 based Apple Silicon
sudo docker run --platform linux/amd64 -it -v $(pwd)/:/home/examples/ ee789_ahir_img
```