Skip to content

Commit

Permalink
Rename hardware_accelerator to hardware_acceleration (#2)
Browse files Browse the repository at this point in the history
Update directory names
Update links and link text in Markdown
  • Loading branch information
Ricky Su authored and GitHub Enterprise committed Aug 26, 2021
1 parent 4801a83 commit dfc5574
Show file tree
Hide file tree
Showing 1,151 changed files with 32 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ git clone https://github.com/Xilinx/Vitis-Tutorials.git
Copy and extract large files in convolution tutorial directory as follows:

```bash
cd /VITIS_TUTORIAL_REPO_PATH/Hardware_Accelerators/Design_Tutorials/01-convolution-tutorial
cd /VITIS_TUTORIAL_REPO_PATH/Hardware_Acceleration/Design_Tutorials/01-convolution-tutorial
wget https://www.xilinx.com/bin/public/openDownload?filename=conv_tutorial_files.tar.gz -O conv_tutorial_files.tar.gz
tar -xvzf conv_tutorial_files.tar.gz
```
Expand All @@ -63,7 +63,7 @@ source <XRT_INSTALL_PATH>/setup.sh
The software application processes High Definition(HD) video frames/images with 1920x1080 resolution. It performs convolution on a set of images and prints the summary of performance results. It is used for measuring baseline software performance. Please the set the environment variable that points to tutorial direction relative to repo path as follow:

```bash
export CONV_TUTORIAL_DIR=/VITIS_TUTORIAL_REPO_PATH/Hardware_Accelerators/Design_Tutorials/01-convolution-tutorial
export CONV_TUTORIAL_DIR=/VITIS_TUTORIAL_REPO_PATH/Hardware_Acceleration/Design_Tutorials/01-convolution-tutorial
```

where **VITIS_TUTORIAL_REPO_PATH** is the local path where git repo is placed by the user after cloning.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The following figure shows a Bloom filter example representing the set `{x, y, z

In this tutorial, each document consists of an array of words where: each word is a 32-bit unsigned integer comprised of a 24-bit word ID and an 8-bit integer representing the frequency. The search array consists of words of interest to the user, and represents a smaller set of 24-bit word IDs, where each word ID has a weight associated with it, determining the importance of the word.

1. Navigate to `Hardware_Accelerators/Design_Tutorials/02-bloom` directory.
1. Navigate to `Hardware_Acceleration/Design_Tutorials/02-bloom` directory.
2. Go to the `cpu_src` directory, open the `main.cpp` file, and look at line 63.

The Bloom filter application is 64 KB, which is implemented as `1L<<bloom_size` where `bloom_size` is defined as 14 in the header file `sizes.h` (calculated as `(2^14)*4B = 64 KB`).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ In this lab, you will experience the acceleration potential by running the appli

```bash
# Source the Vitis runtime environment
export LAB_WORK_DIR=<Downloaded Github repository>/Hardware_Accelerators/Design_Tutorials/02-bloom
export LAB_WORK_DIR=<Downloaded Github repository>/Hardware_Acceleration/Design_Tutorials/02-bloom
```

2. Next, build the C application:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ This tutorial guides you to run the designed accelerator on the FPGA; therefore,
### Accessing the Tutorial Reference Files

1. To access the tutorial content, enter the following in a terminal: `git clone http://github.com/Xilinx/Vitis-Tutorials`.
2. Navigate to the `Hardware_Accelerators/Design_Tutorials/02-bloom` directory.
2. Navigate to the `Hardware_Acceleration/Design_Tutorials/02-bloom` directory.
* `cpu_src` contains all the original source code before modification.
* `images` contains the figures in this tutorial.
* `Makefile` in the `makefile` directory explains the commands used in this lab. Use the `PLATFORM` variable if targeting different platforms.
Expand Down
Loading

0 comments on commit dfc5574

Please sign in to comment.