Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gina7484 committed Apr 24, 2024
1 parent 5a60c68 commit ae58071
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ The design of integrated digital systems encompassing both customized software a

* [Lab 2: Using Spatial Controllers and Memories](lab2.md)

* [Lab 3: Algorithm-Specific Hardware Design]
* Lab 3: Algorithm-Specific Hardware Design
* [Part1: Convolution](lab3_conv.md)
* [Part2: Vitis-Spatial Hello World]()

<!-- **Laboratory Links:**
Expand Down
2 changes: 1 addition & 1 deletion lab3_conv.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ This is executed as:
<img src="./img/sobel-conv-kernels.gif" width="30%">
</div>

3. Given that `horz` and `vert` is the result of the convolution operation of each kernel, store the sum of the absolute values to the output. The value should be sqrt(`horz`<sup>2</sup> + `vert`<sup>2</sup>), but this can be approximated with |`horz`| + |`vert`|. To learn more about sobel filters, you can take a look at [this page](https://homepages.inf.ed.ac.uk/rbf/HIPR2/sobel.htm).
3. Given that `horz` and `vert` is the result of the convolution operation of each kernel, store the sum of the absolute values to the output. The value should be sqrt(`horz`<sup>2</sup> + `vert`<sup>2</sup>), but this can be approximated with `|horz| + |vert|`. To learn more about sobel filters, you can take a look at [this page](https://homepages.inf.ed.ac.uk/rbf/HIPR2/sobel.htm).


## Line Buffers & LUTs
Expand Down

0 comments on commit ae58071

Please sign in to comment.