Skip to content

Commit 2bccfb3

Browse files
authored
Update README.md
1 parent 4324fcb commit 2bccfb3

File tree

1 file changed

+20
-8
lines changed

1 file changed

+20
-8
lines changed

README.md

+20-8
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,32 @@
11
![](../../workflows/gds/badge.svg) ![](../../workflows/docs/badge.svg) ![](../../workflows/test/badge.svg)
22

3-
# Tiny matrix multiplication ASIC for the "1.58 bit" LLMs with Ternary weights
3+
# Tiny matrix multiplication ASIC for 1.58 bit aka TERNARY weight LLMs
4+
5+
This work is inspired by [The Era of 1-bit LLMs: All Large Language Models are in 1.58 Bits](https://arxiv.org/pdf/2402.17764.pdf) paper that reduces weights of the [Large Language Model](https://en.wikipedia.org/wiki/Large_language_model) to ternary representation `{-1, 0, 1}`.
46

57
Preliminery **performance** results based on simulations:
68
* eFabless 130nm ASIC - **1 GigaOPS** per 0.2 square millimeter of chip area @ 50 MHz
7-
* $99 FPGA - **0.6 TeraOPS** @ 500 MHz (thanks to [@samsoniuk](https://github.com/samsoniuk) for simulation)
9+
* $99 FPGA - **0.6 TeraOPS** @ 500 MHz (thanks to [@samsoniuk](https://github.com/samsoniuk) for quick synthesis!)
810

911
Observation: _**doubling** the chip area leads to **50%** increase in performance given a constant memory bandwidth and clock frequency._
1012

11-
## Inspiration
12-
This work is inspired by [The Era of 1-bit LLMs: All Large Language Models are in 1.58 Bits](https://arxiv.org/pdf/2402.17764.pdf) paper that reduces weights of the [Large Language Model](https://en.wikipedia.org/wiki/Large_language_model) to ternary representation `{-1, 0, 1}`.
13+
![](docs/FPGA_sim_by_samsoniuk.png)
1314

14-
## Intent
15+
## Intent & ASIC
1516
This implementation is an exploration of the design space - intent is to measure how chip area, precsion and memory bandwidth affects the performance of the systolic array and AI accelerators.
1617

1718
This ASIC will be fabricated using eFabless 130 nm process via [Tiny Tapeout](https://tinytapeout.com).
1819

20+
![](docs/ASIC.png)
21+
1922
## Considerations
2023
This implementation takes the following considerations into account:
2124
* Extremely limited chip area ~ 0.1 .. 0.3 square millimeters.
2225
* Extremely low memory bandwidth limited by the 16 IO pins available in Tiny Tapeout ~ 100 MB/s.
2326
* Be able to increase compute regardless of memory bandwidth.
2427

2528
## Implementation
26-
**Ternary weights.** Currently a pretty basic approach is used to decode ternary values from 8-bit stream. 8-bit values are decoded with a huge case statement. Surprisingly it produces a pretty compact logic. But I am sure it in can be done better!
29+
**Ternary weights.** Currently a pretty basic approach is used to decode 5 ternary values from every 8 bits. 8-bit values are decoded with a huge case statement. Surprisingly it produces a pretty compact logic. But I am sure it in can be done better!
2730
```
2831
always @(*) begin
2932
case(packed_weights)
@@ -36,11 +39,20 @@ This implementation takes the following considerations into account:
3639
**Systolic array.** The matrix multiplication is implemented as an activation stationary "pseudo" systolic array. It is "pseudo" because inputs (weights & activations) are directly connected to all elements in the array. Only results (new activations) are shifted out of the array in a systolic manner. Such implementation is closer to Tesla FSD rather than a Google's TPU.
3740

3841
**Compute slices.** Systolic array is split into compute slices. Slicing allows to increase the size of systolic array and compute power even if memory bandwidth stays the same.
42+
```
43+
`define COMPUTE_SLICES 4 // 4 * 5 = 20 ops per clock cycle.
44+
// Running on a 50 MHz clock this results in 1000M operations per second - 1 GigaOPS
45+
```
46+
47+
## Code!
3948

40-
- [Read the documentation for project](docs/info.md)
49+
- The code is rather small and fits in one Verilog file [1_58bit_mul.v](src/1_58bit_mul.v)
50+
- Python cocotb is used for testing, check [test.py](test/test.py)
51+
- You can change the size of the systolic array in [config.v](src/config.v)
52+
- [You could read the documentation for the project, however not much there yet ;) ](docs/info.md)
4153

4254

43-
## What is Tiny Tapeout?
55+
# What is Tiny Tapeout?
4456

4557
TinyTapeout is an educational project that aims to make it easier and cheaper than ever to get your digital designs manufactured on a real chip.
4658

0 commit comments

Comments
 (0)