This example shows the addition of two matrixes and the creation
and use of a data set within it.
The data set is created, and is referred to by
dataset_handle.
The data set consists of two buffers:
- mat_a with a size of NUM_ROW*NUM_COL*sizeof(float), and
an access_mode of ALF_DATASET_READ_ONLY
- mat_b with a size of NUM_ROW*NUM_COL*sizeof(float), and
an access_mode of ALF_DATASET_READ_WRITE
The data set is associated with the task referred to by
task_handle.
The following section of code marked in bold shows the lines of
code that have been added for data set support.
Source code
The
source code is provided with the shipped samples in the following directory:
matrix_add/common/dataset