Skip to content

Commit a5a67d4

Browse files
nishraptorNishant Mysore Subramanya Mysore
andauthored
Tried to fix formatting issues in github pages in the README. Fixed links to correct tests (#3)
Co-authored-by: Nishant Mysore Subramanya Mysore <nmysore@xlnx.xilinx.com>
1 parent 057b8a9 commit a5a67d4

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

docs/AIEDesignPatterns.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This document is an introduction to using the AIE dialect in practice and provid
55

66
## Using AIE Cores
77

8-
[Core Example](https://github.com/Xilinx/mlir-aie/test/unit_tests/03_sync_with_locks/aie.mlir)
8+
[Core Example](https://github.com/Xilinx/mlir-aie/tree/main/test/unit_tests/03_sync_with_locks/aie.mlir)
99

1010
We can use the AIE Cores as below to perform some operations
1111

@@ -30,7 +30,7 @@ Perform some operations on the buffer in the core
3030
```
3131

3232
## Single-buffered Communication
33-
[Single-buffer DMA example](https://github.com/Xilinx/mlir-aie/test/unit_tests/05_tiledma/aie.mlir)
33+
[Single-buffer DMA example](https://github.com/Xilinx/mlir-aie/tree/main/test/unit_tests/05_tiledma/aie.mlir)
3434

3535
Define the AIE tiles you want to communicate between. Here Tile (7,1) will be the source and (7,2) the destination.
3636

@@ -102,7 +102,7 @@ At the end, we release the lock back in state 0. This allows for the memory to r
102102

103103
## Double-buffered Communication
104104

105-
[Double-buffer DMA example](https://github.com/Xilinx/mlir-aie/test/unit_tests/17_shim_dma_with_core/aie.mlir)
105+
[Double-buffer DMA example](https://github.com/Xilinx/mlir-aie/tree/main/test/unit_tests/17_shim_dma_with_core/aie.mlir)
106106

107107
This example uses the same setup as the previous. For Tile (7,2) we can define an additional lock and buffer and change the buffers to be half the size:
108108
```
@@ -154,7 +154,7 @@ We can use the core in a similar fashion, using the two locks to perform operati
154154

155155
## Controlling from the ARM Processor
156156

157-
[Controlling From ARM](https://github.com/Xilinx/mlir-aie/test/unit_tests/17_shim_dma_with_core/aie.mlir)
157+
[Controlling From ARM](https://github.com/Xilinx/mlir-aie/tree/main/test/unit_tests/17_shim_dma_with_core/aie.mlir)
158158

159159
We can perform some operations from the ARM processor and configure the lock to start the transfer. Here is a simple example where we write to a buffer, and begin the data transfer all from the host code.
160160

@@ -216,7 +216,7 @@ XAieTile_LockRelease(&(TileInst[7][1]), 0, 1, 0); // Release lock
216216
This allows the data transfer to begin
217217

218218
## Static DDR Configuration
219-
[Static DDR](https://github.com/Xilinx/mlir-aie/test/unit_tests/17_shim_dma_with_core/aie.mlir)
219+
[Static DDR](https://github.com/Xilinx/mlir-aie/tree/main/test/unit_tests/17_shim_dma_with_core/aie.mlir)
220220

221221
To read/write from DDR, we declare an external buffer with a location and size
222222
```

docs/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Generated code documentation
1717
Tutorials
1818
- [AIE Design Patterns](AIEDesignPatterns)
1919
- [AIE Routing](AIERouting)
20+
2021
-----
2122

2223
<p align="center">Copyright&copy; 2019-2021 Xilinx</p>

0 commit comments

Comments
 (0)