The PCA
reference design demonstrates a principal component analysis implementation for real matrices on an FPGA.
Area | Description |
---|---|
What you will learn | How to implement an FPGA version of principal component analysis. |
Time to complete | 1 hr (not including compile time) |
Category | Reference Designs and End to End |
This FPGA reference design demonstrates the Principal Component Analysis (PCA) of real matrices, a common linear algebra operation used to analyze large datasets in machine learning applications.
Real-world datasets typically consist of multiple features
This sample is part of the FPGA code samples. It is categorized as a Tier 4 sample that demonstrates a reference design.
flowchart LR
tier1("Tier 1: Get Started")
tier2("Tier 2: Explore the Fundamentals")
tier3("Tier 3: Explore the Advanced Techniques")
tier4("Tier 4: Explore the Reference Designs")
tier1 --> tier2 --> tier3 --> tier4
style tier1 fill:#0071c1,stroke:#0071c1,stroke-width:1px,color:#fff
style tier2 fill:#0071c1,stroke:#0071c1,stroke-width:1px,color:#fff
style tier3 fill:#0071c1,stroke:#0071c1,stroke-width:1px,color:#fff
style tier4 fill:#f96,stroke:#333,stroke-width:1px,color:#fff
Find more information about how to navigate this part of the code samples in the FPGA top-level README.md. You can also find more information about troubleshooting build errors, running the sample on the Intel® DevCloud, using Visual Studio Code with the code samples, links to selected documentation, etc.
Optimized for | Description |
---|---|
OS | Ubuntu* 20.04 RHEL*/CentOS* 8 SUSE* 15 Windows* 10 Windows Server* 2019 |
Hardware | Intel® Agilex® 7, Arria® 10, and Stratix® 10 FPGAs |
Software | Intel® oneAPI DPC++/C++ Compiler |
Note: Even though the Intel DPC++/C++ oneAPI compiler is enough to compile for emulation, generating reports and generating RTL, there are extra software requirements for the simulation flow and FPGA compiles.
For using the simulator flow, Intel® Quartus® Prime Pro Edition and one of the following simulators must be installed and accessible through your PATH:
- Questa*-Intel® FPGA Edition
- Questa*-Intel® FPGA Starter Edition
- ModelSim® SE
When using the hardware compile flow, Intel® Quartus® Prime Pro Edition must be installed and accessible through your PATH.
⚠️ Make sure you add the device files associated with the FPGA that you are targeting to your Intel® Quartus® Prime installation.
⚠️ This code sample may fail to compile with the Intel® oneAPI DPC++/C++ Compiler 2024.2 due to a known bug which will be fixed in a patch. Information about the patch will be available on https://www.intel.com/content/www/us/en/developer/tools/oneapi/fpga.html
Performance results are based on testing as of June 1st, 2023.
Note: Refer to the Performance Disclaimers section for important performance information.
Device | Throughput |
---|---|
Intel® FPGA SmartNIC N6001-PL | 14k matrices/s for matrices of size 8 features * 4176 samples |
The algorithm is split in two parts: 1/ the input matrix is standardized and transformed to a covariance matrix 2/ the Eigen values and Eigen vectors are computed using the QR iteration process
The standardized covariance matrix is defined as:
Where
with
and
By rewriting these equations, we can obtain something that will better map to an FPGA:
where
Using these equations, we can write a function that implements the matrix product
The number of samples in the
As an example, let's consider this
To compute any element of the
At each block iteration, a
After enough iterations, the
The Eigen values and Eigen vectors are computed using the QR iteration process. The algorithm iterates until the Eigen values have been found.
Set
do
QR Decomposition
Set
while (
Upon achieving convergence, the diagonal values of
Set
do
Compute Rayleigh shift:
Subtract the shift from the diagonal elements
QR Decomposition:
Set
while (
The behavior of this algorithm is that the last row and column of
The Wilkinson shift is then given by following equation:
where
The Eigen vectors (
Set
Set
do
Compute Rayleigh shift:
Subtract the shift from the diagonal elements
QR Decomposition:
Update the Eigen vectors:
Set
while (
After the QR iteration is complete, the Eigen values and Eigen vectors are sorted by significance. The sorting actually creates an index list of the most significant columns. This index is then used to stream the Eigen values and Eigen vectors out of the kernel in the correct order.
More information about the QR decomposition algorithm used in this design can be found in the QRD reference design.
To optimize the performance-critical loop in this algorithm, the design leverages concepts discussed in the following FPGA tutorials:
- Triangular Loop Optimization (triangular_loop)
- Explicit Pipelining with
fpga_reg
(fpga_register) - Loop
ivdep
Attribute (loop_ivdep) - Unrolling Loops (loop_unroll)
- Memory attributes (memory_attributes)
- Explicit data movement (explicit_data_movement)
- Algorithmic C Integer Data Type (ac_int)
- Loop initiation interval (loop_initiation_interval)
- Data Transfers Using Pipes (pipes)
The key optimization techniques used are as follows:
- Rewriting the equation of the standardized covariance matrix computation to better map FPGA hardware
- Implement the
$T$ matrix computation in a blocked fashion - Refactoring the original Gram-Schmidt algorithm to merge two dot products into one, reducing the total number of dot products needed to three from two. This helps us reduce the DSPs required for the implementation.
- Converting the nested loop into a single merged loop and applying Triangular Loop optimizations. This allows us to generate a design that is very well pipelined.
- Fully vectorizing the dot products using loop unrolling.
- Using an efficient memory banking scheme to generate high performance hardware.
- Using the
fpga_reg
attribute to insert more pipeline stages where needed to improve the frequency achieved by the design. - Merging the
$R \times Q$ and the$E_{vec} \times Q$ loops to reduce latency. - Sorting the Eigen values and Eigen vectors by populating an index list for streaming the columns in the correct order rather than sorting the Eigen values and Eigen vectors in place.
The dataset used in this sample is the Abalone dataset which is used to predicting the age of abalone from physical measurements.
It can be found in the data
folder.
Flag | Description |
---|---|
-Xshardware |
Target FPGA hardware (as opposed to FPGA emulator) |
-Xssimulation |
Target FPGA simulator (as opposed to FPGA emulator) |
-Xsparallel=2 |
Use 2 cores when compiling the bitstream through Intel® Quartus® |
-qactypes |
Link against the ac_int libraries |
Additionally, the cmake
build system can be configured using the following parameters:
cmake option |
Description |
---|---|
-DSET_BENCHMARK=[0/1] |
Specifies if the program is going to be run using it's benchmark mode (1 by default). In benchmark mode, the path to the dataset file must be passed as a program argument when running the program. |
-DSET_FEATURES_COUNT=[N] |
When in non-benchmark mode, set the number of features to N . |
-DSET_SAMPLES_COUNT=[N] |
When in non-benchmark mode, set the number of samples to N . |
-DSET_FIXED_ITERATIONS=[N] |
Used to set the ivdep safelen attribute for the performance critical triangular loop in the QR decomposition. |
Note: The values for
-DSET_FIXED_ITERATIONS
depends on the value of-DSET_FEATURES_COUNT
,-DSET_SAMPLES_COUNT
, the target FPGA and the target clock frequency.
Note: When working with the command-line interface (CLI), you should configure the oneAPI toolkits using environment variables. Set up your CLI environment by sourcing the
setvars
script located in the root of your oneAPI installation every time you open a new terminal window. This practice ensures that your compiler, libraries, and tools are ready for development.Linux*:
- For system wide installations:
. /opt/intel/oneapi/setvars.sh
- For private installations:
. ~/intel/oneapi/setvars.sh
- For non-POSIX shells, like csh, use the following command:
bash -c 'source <install-dir>/setvars.sh ; exec csh'
Windows*:
C:\"Program Files (x86)"\Intel\oneAPI\setvars.bat
- Windows PowerShell*, use the following command:
cmd.exe "/K" '"C:\Program Files (x86)\Intel\oneAPI\setvars.bat" && powershell'
For more information on configuring environment variables, see Use the setvars Script with Linux* or macOS* or Use the setvars Script with Windows*.
-
Change to the sample directory.
-
Configure the build system for the Agilex® 7 device family, which is the default.
mkdir build cd build cmake ..
Note: You can change the default target by using the command:
cmake .. -DFPGA_DEVICE=<FPGA device family or FPGA part number>
Alternatively, you can target an explicit FPGA board variant and BSP by using the following command:
cmake .. -DFPGA_DEVICE=<board-support-package>:<board-variant> -DIS_BSP=1
Note: You can poll your system for available BSPs using the
aoc -list-boards
command. The board list that is printed out will be of the form$> aoc -list-boards Board list: <board-variant> Board Package: <path/to/board/package>/board-support-package <board-variant2> Board Package: <path/to/board/package>/board-support-package
You will only be able to run an executable on the FPGA if you specified a BSP.
-
Compile the design. (The provided targets match the recommended development flow.)
-
Compile for emulation (fast compile time, targets emulated FPGA device).
make fpga_emu
-
Compile for simulation (fast compile time, targets simulator FPGA device):
make fpga_sim
-
Generate HTML performance report.
make report
The report resides at
pca_report/reports/report.html
. -
Compile for FPGA hardware (longer compile time, targets FPGA device).
make fpga
-
- Change to the sample directory.
- Configure the build system for the Agilex® 7 device family, which is the default.
mkdir build cd build cmake -G "NMake Makefiles" ..
Note: You can change the default target by using the command:
cmake -G "NMake Makefiles" .. -DFPGA_DEVICE=<FPGA device family or FPGA part number>
Alternatively, you can target an explicit FPGA board variant and BSP by using the following command:
cmake -G "NMake Makefiles" .. -DFPGA_DEVICE=<board-support-package>:<board-variant> -DIS_BSP=1
Note: You can poll your system for available BSPs using the
aoc -list-boards
command. The board list that is printed out will be of the form$> aoc -list-boards Board list: <board-variant> Board Package: <path/to/board/package>/board-support-package <board-variant2> Board Package: <path/to/board/package>/board-support-package
You will only be able to run an executable on the FPGA if you specified a BSP.
-
Compile the design. (The provided targets match the recommended development flow.)
-
Compile for emulation (fast compile time, targets emulated FPGA device).
nmake fpga_emu
-
Compile for simulation (fast compile time, targets simulator FPGA device):
nmake fpga_sim
-
Generate HTML performance report.
nmake report
The report resides at
pca_report.a.prj/reports/report.html
. -
Compile for FPGA hardware (longer compile time, targets FPGA device).
nmake fpga
-
Note: If you encounter any issues with long paths when compiling under Windows*, you may have to create your 'build' directory in a shorter path, for example
C:\samples\build
. You can then run cmake from that directory, and provide cmake with the full path to your sample directory, for example:C:\samples\build> cmake -G "NMake Makefiles" C:\long\path\to\code\sample\CMakeLists.txt
Argument | Description |
---|---|
<path> |
(Required in benchmark mode, must be omitted otherwise) Path to the abalone.csv file located in the data folder of this sample. |
<num> |
(Optional) Specifies the number of times to repeat the decomposition. Its default value is 1 for the emulation and simulation flow and 4096 for the FPGA flow. |
- Run the sample on the FPGA emulator (the kernel executes on the CPU).
./pca.fpga_emu <path to data/abalone.csv>
- Run the sample on the FPGA simulator.
CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=1 ./pca.fpga_sim <path to data/abalone.csv>
- Run the sample on the FPGA device (only if you ran
cmake
with-DFPGA_DEVICE=<board-support-package>:<board-variant>
)../pca.fpga <path to data/abalone.csv>
- Run the sample on the FPGA emulator (the kernel executes on the CPU).
pca.fpga_emu.exe <path to data/abalone.csv>
- Run the sample on the FPGA simulator.
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=1 pca.fpga_sim.exe <path to data/abalone.csv> set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=
- Run the sample on the FPGA device (only if you ran
cmake
with-DFPGA_DEVICE=<board-support-package>:<board-variant>
).pca.fpga.exe <path to data/abalone.csv>
Example Output when running on the Intel® FPGA SmartNIC N6001-PL.
Running on device: ofs_n6001 : Intel OFS Platform (ofs_ee00000)
Reading the input data from file.
Features count: 8
Samples count: 4176
Running Principal Component analysis of 1 matrix 4096 times
Using device allocations
Total duration: 0.290521 s
Throughput: 14.0988k matrices/s
Verifying results...
All the tests passed.
Code samples are licensed under the MIT license. See License.txt for details.
Third party program Licenses can be found here: third-party-programs.txt.