Next Article in Journal
Design of Voltage Mode Electronically Tunable First Order All Pass Filter in ±0.7 V 16 nm CNFET Technology
Previous Article in Journal
A Novel Differential Fault Analysis on the Key Schedule of SIMON Family
Previous Article in Special Issue
Design and Optimization of Supercapacitor Hybrid Architecture for Power Supply-Connected Batteries Lifetime Enhancement
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

AnScalable Matrix Computing Unit Architecture for FPGA, and SCUMO User Design Interface

by
Asgar Abbaszadeh
1,†,
Taras Iakymchuk
2,†,
Manuel Bataller-Mompeán
2,†,
Jose V. Francés-Villora
1,† and
Alfredo Rosado-Muñoz
2,*,†
1
Integrated Circuits Design Laboratory, Faculty of Electrical Engineering, Sahand University of Technology, Tabriz 5331711111, Iran
2
Processing and Digital Design Group, Department of Electronic Engineering, University of Valencia, 46100 Burjassot, Spain
*
Author to whom correspondence should be addressed.
These authors contributed equally to this work.
Electronics 2019, 8(1), 94; https://doi.org/10.3390/electronics8010094
Submission received: 30 November 2018 / Revised: 21 December 2018 / Accepted: 11 January 2019 / Published: 15 January 2019
(This article belongs to the Special Issue Hardware and Architecture)

Abstract

:
High dimensional matrix algebra is essential in numerous signal processing and machine learning algorithms. This work describes a scalable square matrix-computing unit designed on the basis of circulant matrices. It optimizes data flow for the computation of any sequence of matrix operations removing the need for data movement for intermediate results, together with the individual matrix operations’ performance in direct or transposed form (the transpose matrix operation only requires a data addressing modification). The allowed matrix operations are: matrix-by-matrix addition, subtraction, dot product and multiplication, matrix-by-vector multiplication, and matrix by scalar multiplication. The proposed architecture is fully scalable with the maximum matrix dimension limited by the available resources. In addition, a design environment is also developed, permitting assistance, through a friendly interface, from the customization of the hardware computing unit to the generation of the final synthesizable IP core. For N × N matrices, the architecture requires N ALU-RAM blocks and performs O ( N 2 ) , requiring N 2 + 7 and N + 7 clock cycles for matrix-matrix and matrix-vector operations, respectively. For the tested Virtex7 FPGA device, the computation for 500 × 500 matrices allows a maximum clock frequency of 346 MHz, achieving an overall performance of 173 GOPS. This architecture shows higher performance than other state-of-the-art matrix computing units.

1. Introduction

Matrix arithmetic is usually the core computation of complex signal processing algorithms [1]. Digital images are stored in matrix format, and then, any filtering, modification, decision, or recognition needs matrix algebra. In complex neural network algorithms, the weights are presented in matrix format, and the inputs are multiplied by a matrix of weights [2]. Adaptive filters in control systems such as Kalman filters need matrix algebra. Many other fields such as navigation systems, wireless communication systems, or graph theory, among others, have also a great deal of matrices.
Numerous scalable implementations of dense matrix-by-matrix multiplication [3,4,5] and dense vector-matrix multiplication [6] exist. However, most of them use external memories to save input matrices and then extra FIFOs to fetch matrix elements from memories, requiring extra registers to save temporary results [7,8]. This usually increases latency and power consumption. An approach for dense matrix-matrix multiplication based on circulant matrices was proposed in [9], allowing matrix multiplication time to be O ( N 2 ) without any FIFO and internal registers required to prefetch matrix elements and save temporary results.
In some cases, flexible architecture proposals go beyond multiplication, permitting different matrix operations [10]. Some of these Matrix Computing (MC) architectures have been targeted toward applications such as big data [11] or polynomial matrix multiplications [12]. In some cases, matrix computation parallelization is targeted at multiprocessor systems [13].
However, the matrix computation architectures proposed to date are aimed mainly at the performance of a single matrix operation, failing to optimize the data flow for a sequence of operations. Note that, generally, the result of matrix-based digital signal processing algorithms relies on a sequence of matrix operations (e.g., multiplication, then addition, then subtraction, transpose, etc.), where intermediate results are used as the operand for a new matrix operation again and again, until the end of the computation (see Section 3 for an example case). To address a sequence of operations, matrix computing architectures generally need moving data from the intermediate result matrix to the input operand memory in order to be able to undertake the following operation of the sequence. Additionally, a more serious drawback appears when the result of a matrix operation must be sent to external memory to be used as the operand for the next matrix operation. In these cases, a serious overhead appears when considering the complete sequence of matrix operations. Thus, to optimize the performance of computing a sequence of matrix operations, the data flow is as important as optimizing the performance of each matrix operation individually.
This work aims to design a matrix-computing unit on the basis of a circulant matrix multiplication architecture, allowing one to preserve the efficiency of the circulant matrix multiplication while extending it to other operations and optimizing the data flow to compute a sequence of matrix operations. There exists an extensive literature about the use of GPUs for matrix operations. Despite the proposed architecture improving many proposals running on GPUs, this work is not intended to serve as an alternative to GPU computing. The use of a GPU requires high power and a desktop computer, while a single-chip FPGA solution offers low power and small size, with applications in many different fields where small and portable devices are required.
This work aims to design a matrix-computing unit taking advantage of the efficiency of the circulant matrix multiplication [9] while extending it to other operations and optimizing the data flow to compute a sequence of matrix operations. The main contributions of this paper are as follows:
  • We propose a universal square matrix-computing unit, based on a circulant matrix structure. It computes matrix-by-matrix, matrix-by-vector, vector-by-matrix, and scalar-by-matrix operations in the same hardware. This architecture is able to compute multiplication, addition, subtraction, and dot product.
  • The proposed matrix-computing unit is scalable. It has been designed for square matrices of arbitrary size, the maximum matrix size only limited by the available memory in the device.
  • The proposed architecture shows a great data flow optimization. The results of a matrix operation are available as input for the next matrix operation without data movement, avoiding delays and reducing clock cycles.
  • The proposed architecture is able to perform arithmetic operations in direct or transposed forms by a simple modification in the addressing of the memory; it can be thought of as an immediate execution of the transpose operation without delay penalty.
  • We propose an FPGA-based implementation of the matrix-computing unit. It is a flexible FPGA core, reusable for performing complex algorithms.
  • We develop a graphical user design tool to assist the user in defining a customized matrix computation core IP according to his/her needs.
Despite that the proposed matrix computation architecture can be implemented in VLSIor FPGA, increasing the capacity and reconfigurability of Field Programmable Gate Arrays (FPGA) makes these devices the best candidates to implement high-throughput and complex signal processing algorithms quickly. The large number of high-speed I/O pins, local memories, and DSP blocks enable FPGA to perform fast massive parallel processing. In addition, FPGA are more efficient in power consumption and processing speed than general-purpose processors, and VLSI is the option for high-volume production. With such characteristics and the ubiquity of the matrix-based digital signal processing algorithms, FPGA devices have become a usual platform for fast matrix processing architectures.
This paper is organized as follows. The circulant matrix multiplication process is described in Section 2. Section 3 describes the proposed arithmetic algorithms for different matrix operations, using a circulant matrix architecture. Section 4 discusses the proposed hardware architecture, and Section 5 describes the developed SCUMO (Scalable Computing Unit for Matrix Operations) design user interface. Implementation results and discussion occupy Section 6, and Section 7 concludes the work.

2. Circulant Matrices and Matrix Multiplication

The proposed matrix-computing unit is built on the basis of circulant matrices to compute matrix operations efficiently. This section describes the multiplication process as the basis for the rest of the computations.
Consider two N × N matrices P and G. The multiplication result R = P G is an N × N matrix. Elements of R are computed according to Equation (1).
R i , j = k = 1 N P i , k G k , j
Then, the first column of the resulting matrix can be computed as shown in Equation (2).
R 1 , 1 = P 1 , 1 G 1 , 1 + P 1 , 2 G 2 , 1 + + P 1 , N G N , 1 R 2 , 1 = P 2 , 1 G 1 , 1 + P 2 , 2 G 2 , 1 + + P 2 , N G N , 1 : R N , 1 = P N , 1 G 1 , 1 + P N , 2 G 2 , 1 + + P N , N G N , 1
Let P i c and R i c denote vectors containing the i th column of the P and R matrices and P i r and R i r represent vectors containing the i th row of the P and R matrices. Equation (2) can be rewritten as in Equation (3).
R 1 c = G 1 , 1 P 1 c + G 2 , 1 P 2 c + + G N , 1 P N c
This formulation changes the vector-by-vector multiplication operation to a summation of vector-by-scalar operations, which is simpler to compute in hardware. The extension to all columns of the R matrix is described in Equation (4).
R i c = G 1 , i P 1 c + G 2 , i P 2 c + + G N , i P N c
This approach can be used for different matrix multiplication possibilities, as shown in Table 1, by changing the computation indices. Note that, in all cases, computation is made by a cycle of scalar-by-vector operations.
To compute all possible states of multiplication of two input matrices, it is necessary to access all elements of the P i c and P i r vectors at the same time. In conventional methods, the main problem concerns the matrix elements’ access, typically stored in a memory where it is not possible to access all elements of P i c simultaneously. To overcome this problem, the circulant matrix structure is used [9]. The circulant form of an N × N matrix is a matrix whose elements in each row are rotated to right one element relative to the preceding row [14]. Equation (5) represents an N × N matrix in circulant form, and Figure 1 shows the physical memory locations for 3 × 3 matrix elements in normal and circulant forms.
P = P 1 , 1 P 1 , 2 P 1 , 3 P 1 , N P 2 , N P 2 , 1 P 2 , 2 P 2 , N 1 P N , 2 P N , 3 P N , 4 P N , 1
An optimal matrix elements’ storage is possible by obtaining the circulant matrix and storing each of the obtained columns in a different RAM memory, thus requiring N memory blocks ( 0 , , N 1 ) . As seen in Figure 1, the elements of each column or row vector are saved in different memory blocks, and all elements of each row or column are simultaneously accessible since these memory blocks are fully independent of read or write. The read address of the elements of a column vector i in different memory blocks can be written as A i = ( A 0 + i ) m o d N , where A 0 is the address of the element in the first memory and i the read address in the next memory block ( i = 2 N 1 ) . Thus, we can produce one address for the element in the first memory, and then, the addresses for the other columns can be computed from that initial address. Therefore, by incorporating an internal address increment for that address according to the memory block position, only one address bus is required for all memory blocks, greatly reducing the interconnection lines and, thus, reducing the resource usage. For instance, accessing all elements in column X 2 c from Figure 1 means that each memory block must read values in Addresses 2 , 0 , 1 from memories R A M 0 , R A M 1 , R A M 2 , respectively. Thus, a complete matrix column can be read in a single clock cycle, ready to be multiplied by an scalar value.
An additional advantage of matrix memory storage as a circulant matrix lies in the fact that the transpose matrix can be read by changing the addressing order, i.e., a matrix row can be simultaneously read in a single clock cycle. In the general case of a matrix X as shown in Figure 1, an X i r row can be accessed by reading from the same address location in all memory blocks, i.e., A i 1 . As an example, reading X 2 r requires accessing Address 1 in all memory blocks. This form of access to elements in row or column form is selected in each block from an external line, as explained in Section 4.
This scheme can be efficiently implemented in hardware for matrix element access by using modulo N counters. In case of matrix operations, we assume that one matrix (e.g., P) is stored in RAM memories in circulant form and the other matrix (G) is externally fed, assuming that a single value from G is entered into the computation system every clock cycle. As explained earlier, all operations are converted to vector-by-scalar operations, and thus, operating with matrices P and G means that P row or columns are simultaneously accessed and individual G values are serially entered into the architecture.
Once the partial row or column computation result is obtained, it must be internally stored. This is done in the existing RAM memories by defining each RAM memory to be 2 N in size. Then, one half of the memory stores one column operand from P, and the second half stores the vector-by-scalar computation result. After completing the process, the second half of the memory contains the matrix result, which is ready to be used as a matrix operand in the next operation by switching the read address to the second half and storing the new result in the first half. Alternating this memory paging method, no delay penalty between successive matrix operations exists.
Let us explain the multiplication process of two N × N matrices P and G. The product P G is computed by addressing P values beginning from N 1 down to zero for the first row, N 2 down to ( N 1 m o d N ) for the second row, and zero down to ( 1 m o d N ) for the N th row, i.e., one element for each RAM memory is read. Once all P values are simultaneously read, they must be multiplied by the same G matrix element, as shown earlier. This is achieved by including N arithmetic units (referred to as ALU), which multiply each P value by the G value in a concurrent form to obtain all partial products described in Equation (4). Lastly, the addition of the partial products generates the final result.
To illustrate the process, the computing algorithm for the first column of R = P G for 3 × 3 matrices is presented in Algorithm 1. This algorithm performs all required computations described in Equation (3) for N = 3 . It is assumed that G r o w and G c o l are row and column addresses of the required G matrix element, which are externally fed in its corresponding order. Three ALU units are included to compute parallel multiplications, and P matrix elements are stored in circulant form, distributed in the RAM memories according to the addresses indicated in Table 2.
Algorithm 1 Sequence of operations for 3 × 3 matrix multiplication ( N = 3 ). By using concurrent arithmetic operations, one column result can be obtained after three clock cycles (Ncycles for the general case). The complete computation result is achieved in N 2 cycles for N × N matrices.
F i r s t c l o c k c y c l e :
G r o w = 1 , G c o l = 0 , G 2 , 1 f r o m m a t r i x G i s f e d
A 0 = 2 , P 3 , 2 f r o m R A M 0 i s s e l e c t e d
A 1 = ( A 0 + i ) m o d N = 0 , P 1 , 2 f r o m R A M 1 i s s e l e c t e d
A 2 = ( A 0 + i ) m o d N = 1 , P 2 , 2 f r o m R A M 2 i s s e l e c t e d
A L U 1 1 = P 3 , 2 G 2 , 1
A L U 2 1 = P 1 , 2 G 2 , 1
A L U 3 1 = P 2 , 2 G 2 , 1
S e c o n d c l o c k c y c l e :
G r o w = 2 , G c o l = 0 , G 3 , 1 f r o m m a t r i x G i s f e d
A 0 = 1 , P 2 , 3 f r o m R A M 0 i s s e l e c t e d
A 1 = ( A 0 + i ) m o d N = 2 , P 3 , 3 f r o m R A M 1 i s s e l e c t e d
A 2 = ( A 0 + i ) m o d N = 0 , P 1 , 3 f r o m R A M 2 i s s e l e c t e d
A L U 1 2 = P 2 , 3 G 3 , 1 + A L U 3 1 = P 2 , 3 G 3 , 1 + P 2 , 2 G 2 , 1
A L U 2 2 = P 3 , 3 G 3 , 1 + A L U 1 1 = P 3 , 3 G 3 , 1 + P 3 , 2 G 2 , 1
A L U 3 2 = P 1 , 3 G 3 , 1 + A L U 2 1 = P 1 , 3 G 3 , 1 + P 1 , 2 G 2 , 1
T h i r d c l o c k c y c l e :
G r o w = 0 , G c o l = 0 , G 1 , 1 f r o m m a t r i x G i s f e d
A 0 = 0 , P 1 , 1 f r o m R A M 0 i s s e l e c t e d
A 1 = ( A 0 + i ) m o d N = 1 , P 2 , 1 f r o m R A M 1 i s s e l e c t e d
A 2 = ( A 0 + i ) m o d N = 2 , P 3 , 1 f r o m R A M 2 i s s e l e c t e d
A L U 1 3 = P 1 , 1 G 1 , 1 + A L U 3 2 = P 1 , 1 G 1 , 1 + P 1 , 3 G 3 , 1 + P 1 , 2 G 2 , 1
A L U 2 3 = P 2 , 1 G 1 , 1 + A L U 1 2 = P 2 , 1 G 1 , 1 + P 3 , 1 G 3 , 1 + P 2 , 2 G 2 , 1
A L U 3 3 = P 3 , 1 G 1 , 1 + A L U 2 2 = P 3 , 1 G 1 , 1 + P 3 , 3 G 3 , 1 + P 1 , 2 G 2 , 1
After three clock cycles (one round), data are saved in memory, and the computation of the second column starts. In three rounds, all R elements of the resulting matrix are obtained by shifting partial products between columns in a ring from left to right. In the general case, an N × N multiplication is obtained after N 2 clock cycles. The resulting elements of matrix R are stored in the unused area of memory blocks (second half of the memory block) in circulant form, which allows its use in further matrix operations, e.g., multiplication of matrix R by a new G matrix externally fed into the system.

3. Matrix Computing Unit Proposal

The architecture of the proposed matrix-computing unit has been designed to optimize both the performance and the data flow of the complete sequence of matrix operations. To do that, an extension of the circulant matrix multiplication architecture [9] is proposed. This architecture permits keeping the matrix multiplication computationally efficient and, at the same time, exploiting some relevant data flow benefits to improve the performance of the whole computation sequence:
-
Instant transpose operation (zero overhead for transpose): The matrix stored in the unit can be used as an operand in direct or transposed form by a simple modification in the addressing. This is done without data movement. Thus, transpose operation can be thought of as an instantaneous operation.
-
No data movement between operations (internal intermediate storage): The unit contains a temporary N × N matrix storage. This is done by doubling the size of RAM memory blocks where the result of the operation is stored in circulant form, ready to be used as one of the matrix operations in the next operation. This mechanism enables chaining matrix operations, avoiding the need of writing intermediate results in a memory out of the unit before the end of the sequence, preventing delay penalties of data movements.
Together with matrix multiplication, the proposed computational architecture allows the following operations: matrix addition, matrix subtraction, matrix dot product, and scalar-by-matrix multiplication. In all cases, it is possible to choose if the internal matrix uses its direct or transposed form for the next operation. Algorithm 2 illustrates a case example computed by the proposed unit. As seen in the algorithm, no extra time for new computations is required since a continuous data feed is done while computing.
Algorithm 2 Use of the proposed matrix-computing unit to solve an example matrix expression. The sequence of matrix operations required to achieve the final result is shown.
Example expression:
R = k · ( C · ( A · B ) t + D ) t
Step 1:Load matrix ( A ) into the unit.
Load coefficients of matrix A into the unit.
  
Step 2:Multiplication ( B ) with the inner matrix.
Load B coefficients while computing tmp 1 = A · B
Resulting tmp 1 matrix stays inside the unit when finished.
  
Step 3:Multiplication ( C ) with the (transpose) inner matrix.
Address control signals to read inner tmp 1 as the transpose.
Load C coefficients while computing tmp 2 = C · tmp 1 t
No overhead cycles spent to transpose the inner matrix.
Resulting tmp 2 matrix stays inside the unit when finished.
  
Step 4:Add ( D ) with the inner matrix.
Load D coefficients while computing tmp 3 = tmp 2 + D
Resulting tmp 3 matrix stays inside the unit when finished.
  
Step 5:Scalar (k) by (transpose) inner matrix multiplication.
Address control signals to read inner tmp 1 as the transpose.
Computes input scalar k by inner matrix multiplication.
No overhead cycles spent to transpose the inner matrix.
Resulting tmp 4 = k · tmp 3 t = k · ( C · ( A · B ) t + D ) t
stays inside the unit when finished.
  
Step 6:Operation: Read inner matrix (computation result).
Resulting matrix coefficients are read from the unit.
Matrix multiplication was described in Section 2. Let us describe how the same hardware architecture can serve to compute other matrix computations.

3.1. Transpose Matrix

Algorithms 3 and 4 show the cases of address generation for P G and P t G , respectively. Indices k and l are iterations, and G r o w and G c o l are the row and column addresses of the required G matrix element. For direct matrix multiplication, a circulant addressing mode is used, and matrix elements are read column-wise. In transpose mode, normal addressing mode is used, and matrix elements are read row-wise. In case of multiplication by a transposed matrix G t , G c o l and G r o w addresses should be swapped. The row addresses become column address, and vice versa. As can be seen, obtaining the direct or transposed only form requires a different reading order of P elements.
Thus, it is not necessary for the core to be able to compute all G P , G t P , G P t , G t P t operations, because after loading the G matrix in the internal memory, the result can be computed in the same form as P G , but only changing, through control signals, how the elements of the internal matrix are read to operate (e.g., in direct or transpose form). This ability has been added to increase the flexibility of the system. d to operate with (e.g., in direct or transpose form). This ability has been added to increase the flexibility of the system.
Algorithm 3 Addressing scheme for P G computation.
P w r i t e = 1
P r e a d = 1
for k=1:N do
    for l=1:N do
         A 0 = ( N k l + 1 ) m o d N
         G r o w = ( k + l 1 ) m o d N
         G c o l = k 1
C o m p u t a t i o n i s p e r f o r m e d h e r e
    end for
end for
Algorithm 4 Addressing scheme for P t G computation.
P w r i t e = 1
P r e a d = 0
for k=1:N do
    for l=1:N do
         A 0 = ( ( k m o d N ) + l 1 ) m o d N
         G r o w = ( k + l 1 ) m o d N
         G c o l = k 1
C o m p u t a t i o n i s p e r f o r m e d h e r e
    end for
end for
This flexibility can be used to adapt the computations. Based on matrix-by-matrix multiplication properties, some equivalences as shown in Equation (6) can be done. To compute these multiplications, one may prefer to use its transposed form in the operation and then compute the transpose of the result. An interesting property in the circulant form of a matrix is that both P i , j and P j , i elements are stored in the same memory column. By changing the writing address from circulant form to normal form ( P w r i t e = 0 ), the transposed operation is controlled. For example, G P computation using P w r i t e = 0 offers the same result as computing P t G t using P w r i t e = 1 .
P G = ( G t P t ) t P G t = ( G P t ) t P t G = ( G t P ) t P t G t = ( G P ) t

3.2. Matrix Addition, Subtraction, and Dot Product Operation

Matrix addition, subtraction, and dot product operations share the same algorithm for address generation. The only difference lies in the A L U operation, which must be set to add, subtract, or multiply, accordingly. These operations require O ( N 2 ) arithmetic operations. Algorithm 5 shows the addressing scheme for these operations. Input signal S s e l controls the write operation into memories. Based on the transpose property of a circulant form of the matrix, only the P r e a d input should be set to zero. For the addition or dot product with the G t operand, the values of G c o l and G r o w must be swapped.
Algorithm 5 Addressing scheme for P ± G and P · G computation.
P w r i t e = 0
P r e a d = 0
for k=1:N do
    for l=1:N do
         A 0 = k 1
         G r o w = k 1
         G c o l = l 1
         S s e l = 1 < < l
C o m p u t a t i o n i s p e r f o r m e d h e r e
    end for
end for

3.3. Scalar-by-Matrix and Vector-by-Matrix Multiplication

To perform the scalar-by-matrix multiplication, we have two possible operations for a given scalar S and an N × N matrix: S P and S P t . It performs in N clock cycles. For each clock cycle, all the elements of one row will be multiplied by S. Algorithm 6 shows the addressing scheme for S P computation. To compute S P t , the P r e a d input must be set to one.
Algorithm 6 Addressing scheme for S P computation.
P w r i t e = 0
P r e a d = 0
for k=1:N do
     A 0 = k 1
C o m p u t a t i o n i s p e r f o r m e d h e r e
end for
For the multiplication of an N × N matrix P by an N × 1 vector V, two operations are possible: P V and P t V . The algorithm computing P V and P t V is similar to Algorithms 3 and 4, respectively. The difference is that k = 1 for both algorithms. For the multiplication of an 1 × N vector V by an N × N matrix P, we also have two operations: V P and V P t . The algorithm computing V P and V P t is similar to Algorithms 4 and 3, respectively. In this case, k = 1 for both algorithms, the value for G c o l and G r o w should be swapped, and P w r i t e = 0 .

4. Hardware Architecture for the Matrix Computation Core

The proposed hardware architecture supporting all aforementioned matrix operations is presented in Figure 2. It consists of a systolic ring of ALU-RAM blocks containing two parts: a memory block and an arithmetic unit. Each P matrix column is stored in circulant form, and the Finite State Machine (FSM) block receives external configuration modes and controls the data flow: address generation, data shifting, synchronization of control signals to modules, etc.
For the general case, an N × N matrix requires N memory blocks and N ALUs in order to assess all R i j elements in N 2 clock cycles. It is important to note that R i j elements are calculated by successive shift-multiply-add operations, passing intermediate results in a ring from left to right.
To operate, it is always assumed that one matrix (referred o as P) is internally stored in the memory blocks in circulant form, and the second operand matrix (G), vector (V), or scalar (S) is stored in an external memory, or externally fed by another hardware, upon issuance of the required address (from the FSM by G r o w and G c o l signals). The proposed architecture uses the G _ D A T A port to feed G , V , and S data, but also for data loading through the ALU, so that new matrix data values can be stored in RAM to act as the P operand. The main principles used in this architecture are the locality of the computation and the use of global control signals to reduce delays and optimize logic resources.
The FSM is controlled by the user via a 5-bit data bus ( O P _ T Y P E ) indicating the desired operation to the computing unit (load, unload, or arithmetic operation to be performed). After that, the FSM generates: a sequence of control signals W E , E N , O P C O D E , R O W , C O L , etc.; the addresses and control signals for the systolic ring; G r o w and G c o l signals; and determines the operation of the ALU blocks. The user can write the operand on the fly, as long as a constant write latency is guaranteed.
The FSM block is fully modular to decrease the complexity of address generation. It consists of five sub-blocks to generate address and control signals for different operations. These sub-blocks are: loading, unloading, multiplication, addition (also valid for subtraction), and scalar multiplication. By using the modular approach, new functionalities can be added without modification of the existing hardware. The multiplication sub-block controls both matrix-by-matrix and matrix-by-vector multiplication. The addition sub-block controls addition, subtraction, and dot product operations. The rest of the sub-blocks are used for a single operation.
The C I R C / R O W data comprise a 3-bit bus containing P r e a d , P w r i t e , and W E signals going to memory blocks. As the input matrix P and the results are saved in the same memory block, the B A N K _ S E L E C T signal determines if the P matrix elements are in the upper bank or lower bank of the memory block (alternatively, P data are in the upper block, while R data in the lower block, or vice versa). There are N C S E L signals, which enable or disable the read/write of memory blocks. All ALU blocks share the N O R M A L I Z E signal, which enables normalization of the multiplication results based on fixed point arithmetic. It is important to note that C S E L signals are the only specific signals of the ALU-RAM blocks; all the others are common bus signals. This property eases routing problems as a reduced number of interconnection lines is required. Moreover, there is no multiplexing in data and address paths, which reduces delays and increases the maximum possible frequency of the system. After finishing the selected operation, the FSM raises the signal O P _ D O N E high, and the user can offload resulting data from the core or start a new operation.
Figure 3 shows the internal architecture of the proposed ALU-RAM column architecture. A true dual-port memory block primitive must be used to store the P operand and the resulting R matrix elements with independent data in and data out ports. Thus, its size must be 2 N , at least. In addition to the memory, an additional logic element is required: the module “circulant address generator”. It is based on the received address from the FSM and the mode of operation (direct or transpose) and calculates the physical memory address to be read as described in previous sections. Finally, the ALU-RAM block includes an ALU able to perform P = A ; P = A B ; P = D + A ; P = A B + C ; P = D A ; P = ( D A ) , where P is the ALU output, A is the global data input, and B and D are connected to the output port of the memory block. Input C is connected to the ALU output of the adjacent ALU-RAM block on the left, serving as a propagation line of the systolic ring. In the same way, the output of each ALU-RAM block is connected to the input C of the adjacent ALU-RAM block on the right (chaining thus ALU-RAM blocks), as well as to the RAM data input port, for memory storage.
Once defined, the architecture was coded in the VHDL hardware description language. When coding, the main aim was to define a versatile, parameterizable and synthesizable code accepting all possible architecture possibilities, such as matrix size or data bit-length. The resulting code is synthesizable in any FPGA device; the optimal implementation was done in those FPGA devices including RAM Blocks (usually referred to as BRAM) and ALU blocks (usually referred as DSP blocks). In this case, the best performance and resource usage can be expected. Despite its generality, Xilinx FPGA was used for this implementation.

5. SCUMO Software Design Tool

There is general agreement that software is now a dominant part of the embedded design process. Digital circuits are becoming more complex, while time-to-market windows are shrinking. Designers cannot keep up with the advancements in engineering unless they adopt a more methodological process for the design of digital circuits. For this reason, according to computational intelligence paradigms, CAD tools are required to take advantage of the technological advances and provide added value to embedded systems so that the design cycle can be shortened, to be competitive in the market and to accelerate their use by multiple users. Actually, the use of CAD tools supporting complex hardware design systems is not new in hardware/software codesign [15,16] and software applications. It supports the design and configuration of custom hardware implementations [17,18,19].
As the proposed matrix computation core allows multiple configuration possibilities, a CAD tool with a graphical user interface based on MATLAB has been developed. This tool, called SCUMO (Scalable Computing Unit for Matrix Operations), allows introducing configuration parameters, automatically generating hardware description code (VHDL) for FPGA implementation, and also creating hardware test benches for design verification. Thus, the generated code is ready to be used by the FPGA commercial tool provided by the device manufacturer for final implementation and simulation. SCUMO controls the FPGA implementation tool in the background, launching the process and collecting resulting data to be displayed in the user interface.
The first step in the use of SCUMO consists of the user introduction of the desired arithmetic matrix operations to be performed by the core. All arithmetic operations are given in a box, and the user must choose among them. A total of eight arithmetic operations is offered. After selecting all configuration options, the software tool creates the implementation code and test bench; then, the FPGA synthesis process is launched (background execution of proprietary Xilinx FPGA tools). Finally, synthesis results are collected and shown in the software to show all relevant information about the implementation process in the SCUMO user interface.
Figure 4 shows the main user screen where the work flow (“Work Flow Panel”) is indicated by tick marks. This panel informs the user about the completion of the different required steps leading to hardware implementation. Additionally, the panel assists in following the proper order of execution, since the work flow must be executed following a strict order (otherwise, a message box informs the user). While one of the steps is being executed, a wait bar appears to inform the user that no other actions can be executed.
Six actions require the user’s intervention to configure the computation core:
  • Operation selection: The user must select those matrix operations to be executed in the hardware computation core.
  • Bit length: The software tool analyzes the selected operations and calculates the optimum bit length in Q X . Y format.
  • VHDL project synthesis: The user must select one of the FPGA devices offered in a list and synthesis options.
  • Report analysis: The synthesis process considering all previous configurations is launched.
  • Console window reports: The synthesis reports are shown to the user.
  • IP core generate: A wrapping of the core is finally done in order to pack the generated code and make it available for further integration with more complex designs or to be used as a standalone module in an FPGA.
Figure 5 shows the selection list (list box) where the user includes the type of matrix, vector, or scalar operations that are required to be included in the hardware core. Depending on the arithmetic operations chosen, the bit length must be properly selected to avoid overflow problems. For this reason, a specific step is included (Figure 6) so that the user can upload sample data files including the expected values of P and G to be calculated by the hardware core, and the tool will estimate the most adequate bit length for the design (integer and fraction part of the QX.Ydata format type) and the estimated mean squared error that the hardware implementation will have when compared to a PC-based floating point counterpart. Additionally, the introduced data files can be used as a simulation test bench in the hardware design simulation tool (ISE simulator or ModelSim, in this case).
After selection of a specific Xilinx FPGA device, the “VHDL Project Synthesis” option launches the Xilinx synthesis tool by using tcl/tkcommands, which allow one to inform the synthesis tool about all selected parameters required to carry out the synthesis of the core.
The “Reports Analysis” option shown in Figure 7 deploys all related information after the end of the synthesis process. A list box allows the user to navigate through timing analysis and device utilization information collected from all the synthesis tool-generated information, including the maximum clock frequency of operation.
The user can obtain further detailed information in the “Console Window Reports” option (Figure 8) where more detailed translate, mapping, and place and route information can be obtained. At last, the hardware computation core can be generated by selecting the “IP core generate” option (Figure 9). All parameters and interfacing signals are included in the created files, ready to use as part of bigger designs or standalone computing device.

6. Implementation Results

In order to analyze the proposed architecture, the selected design in the SCUMO software used the XC7VX485TFFG1157 Xilinx Virtex 7 FPGA device with 18-bit fixed-point precision (QX.Y format where X + Y = 18). The obtained system was tested using Xilinx ISE 14.2.
In this design, the DSP48E primitives were used as the ALU block described above. Each one of these high performance block is an arithmetic block containing a 48-bit pre-adder, a 23 × 28 multiplier, and a 48-bit MAC-adder. Table 3 shows the required resources and maximum available clock frequency for five different matrix sizes. As seen, the number of DSP48E and block RAM slices was directly related to matrix size. Selecting more than 18 bits doubled the need for DSP slices and increased the amount of necessary logic.
The last row in Table 3 (referred to as “Slices vs. Size”) shows the ratio between the number of logic resources (slices) and the matrix size. It can be observed that this ratio was relatively constant for different matrix sizes, which means that no extra logic was generated when matrix size increased.
Concerning the maximum clock frequency of operation, in the case of a 500 × 500 matrix, a clock speed of 346 MHz was achieved, which means an overall performance of 173 GOPS since 500 operations were being executed at every clock cycle. The maximum clock frequency decreased with the matrix size due to some long delay lines. However, the frequency decrease ratio was low when compared to the matrix size increment: 404.4 MHz and 346.1 MHz was obtained for matrix size of 10 and 500, respectively.
Table 4 shows the number of clock cycles necessary for different operations of the matrix- computing unit. As is shown, matrix-by-matrix multiplication, addition, subtraction, dot product, vector-by-matrix, and scalar-by-matrix multiplications were performed in N 2 + 7 clock cycles. It is important to note that the global core latency was only seven clock cycles, regardless of matrix size. This latency comes from the following sources:
-
One clock cycle at the sequential arithmetic sub-units in the DSP block.
-
One clock cycle at the addition operation.
-
One clock cycle at the multiplication operation.
-
Two clock cycles at the outputs of BRAM memories.
-
Two clock cycles at the FSM unit.
While the latency issue can be important for small matrices, the delay of seven clock cycles became negligible for large sizes.
Something similar arose for loading (storing matrix values in RAM blocks) and unloading (reading matrix values in RAM blocks) operations, requiring N 2 + 8 and N 2 + 6 clock cycles for completion, respectively. In addition, Table 4 shows the peak frequency at which the unit can repeatedly perform each operation (considering the required number of cycles and the maximum frequency of operations for each matrix size).
From the obtained results, it can be determined that the proposed matrix computing architecture extended the circulant matrix multiplication architecture [9] to other operations while keeping the architecture benefits: exploiting local interconnections, data storage, and computations to reduce delays and communication overhead. This fact avoids typical communication bottlenecks in a classical fully-parallel system.
The extension of additional matrix operation performed by the architecture did not affect the matrix multiplication performance, having 173 GOPS of overall performance when computing 500 × 500 matrices. Moreover, the proposed architecture can be a competitor for Graphic Processing Units (GPU) when the matrix size is <1000. In the bibliography, GPU performance ranged from 26.4 [20] to 350 GFLOPS [21], but this performance was greatly reduced for intermediate matrix sizes, as in [21], where performance dropped from 350 GFLOPS to under 50 GFLOPS when the matrix size was <1000. Besides, the circulant matrix multiplication had better performance than the rest of the FPGA-based approaches operating with matrix sizes N > 50 , as [22], who claimed the fastest result for 180 × 180 matrix multiplications. However, the circulant architecture overcame (see Table 4) this performance by various orders of magnitude. Other implementations for N < 50 matrix size are hardly comparable because they tended to use N 2 processing elements [23,24,25].
There exist numerous references dealing with the acceleration of individual matrix operations, but very few consider the implementation of a matrix-computing unit integrating successive and different types of matrix operations. In this sense, the most relevant implementation up to date has been carried out by Wang et al. [10], who included matrix addition, subtraction, dot product, dot division, and matrix multiplication. In this case, Wang obtained, for matrix multiplication, an average performance of 19.1 and 76.8 GFLOPS on the Stratix III and Stratix V platforms, respectively. As the proposed circulant matrix processor performs 173 GOPS, a superior performance can be claimed. Note that this performance is not affected by the configured word-length (except some extra latency cycles when using more than 18 bits, due to its pipelined design). This performance is also higher than the obtained by Wang et al. [10] for matrix multiplication on an Intel i7 3770K processor running a 64-bit Windows 7 operating system, obtaining an average performance of 117.3 GFLOPS. On the other hand, our proposed matrix processor surpasses all other matrix processor implementations in the bibliography, as [26] that required 21,970 cycles to compute a 64 × 64 matrix multiplication, while our circulant matrix processor required only 4013 cycles, being more than five-times faster.
The circulant matrix-computing unit extended matrix multiplication with addition, subtraction, dot product, vector-by-matrix, and scalar-by-matrix operations. The performance measures in Table 4 reveal an optimized performance with low latency on all of them. Other works in the bibliography did not indicate the performance for other operations except matrix multiplication. The operation having a record-breaking performance, making a difference in our circulant matrix-computing unit, was the transpose operation, which we claim to be immediate because it was done by a simple modification in the addressing of the internal matrix. It can be compared with the transpose operation in [26], requiring 2,813,396 cycles to compute a 64 × 64 matrix multiplication, while our circulant matrix processor instantaneously did it.
Some authors proposed specific matrix multiplication architectures targeting convolutional neural networks [5]. In this case, they reported 59.7, 87.8, and 64.9 GFLOPS for matrix computations requiring 105.4, 111.9, and 149.5 million multiplications, respectively. Our work reports 173 GOPS for 125 million multiplications (matrix size of 500). A scalable matrix multiplication architecture was proposed in [22], reporting 12.18 GFLOPS for a 512 × 512 matrix computation, mainly limited by the use of external off-chip RAM memory. Some authors proposed a combined CPU + FPGA architecture where matrix multiplication tasks were shared [27]; in this case, the architecture can achieve 4.19 GFLOPS for 2 K × 2 K matrices by means of block-matrix streaming of data between the CPU and FPGA. Considering our proposed architecture, assuming a 300-MHz clock rate for 2 K × 2 K , a 60-0GOPS performance would be achieved.
Concluding, the obtained results show remarkable benefits of using the proposed circulant matrix-computing unit. It is an efficient and very deterministic matrix processor allowing one to optimize the computation of a complete sequence of matrix operations with a very low latency and clock cycle overhead.

7. Conclusions

In this article, we propose a scalable matrix-computing unit architecture for the computation of sequences of matrix operations. It is motivated by the increasingly central role of signal processing and machine learning algorithms, which require the computation of matrix algebra equations. Works proposed until now have typically focused on accelerating individual matrix operations. We show that it is possible to optimize both the data flow of the sequence of operations and the performance of individual operations using a circulant matrix storage with systolic ring topology. The FPGA hardware implementation shows that the circulant architecture exhibited O ( N 2 ) and a deterministic performance of N 2 + 7 clock cycles for all matrix-matrix operations. The architecture also permits chain matrix operations without data movement of intermediate results, or even using the transpose matrix of an operand with just a simple address modification. These data flow improvements are fundamental for the performance of the computation in a sequence of matrix operations.
The SCUMO design environment assists in the hardware options configuration, from definition to the generation of the final IP core. This architecture can be successfully implemented for large matrices: N × N matrices only require N ALU-RAM blocks. Currently, sizes of up to 9000 × 9000 could be implemented, and in general, the architecture can be extended up to the limits of the hardware device. The resulting implementation achieves 173 GOPS for the 500 × 500 matrices tested, running at 346 MHz.
We plan to improve this architecture including the possibility of choosing floating or fixed point precision and adapting the control unit to handle rectangular matrices. Note that our proposal can adapt to rectangular matrices by just changing the data control sequence. Moreover, it is likely that the circulant matrix architecture will support the inverse matrix architecture, adding it as a new matrix operation.

Author Contributions

Individual contributions: conceptualization, T.I. and A.R.-M.; data curation, M.B.-M.; formal analysis, T.I.; investigation, A.A.; methodology, T.I.; resources, A.R.-M.; software, A.A. and M.B.M.; supervision, A.R.-M.; validation, A.A. and J.V.F.-V.; visualization, M.B.-M.; writing, original draft, A.A., T.I., and A.R.-M.; writing, review and editing, J.V.F.-V.

Funding

This research received no external funding.

Acknowledgments

In this section you can acknowledge any support given which is not covered by the author contribution or funding sections. This may include administrative and technical support, or donations in kind (e.g., materials used for experiments).

Conflicts of Interest

The authors declare no conflict of interest.

Abbreviations

The following abbreviations are used in this manuscript:
BRAMBlock RAM
DSPDigital Signal Processor
FFFlip-Flop
FSMFinite State Machine
FPGAField Programmable Gate Arrays
LUTLook-Up Table
MACMultiply-Accumulate
GUIGraphical User Interface
SCUMOScalable Computing Unit for Matrix Operations
CADComputer-Aided Design
IP coreIntellectual Property core

References

  1. Banerjee, N.; Augustine, C.; Roy, K. Fault-Tolerance with Graceful Degradation in Quality: A Design Methodology and its Application to Digital Signal Processing Systems. In Proceedings of the IEEE 2008 International Symposium on Defect and Fault Tolerance of VLSI Systems, DFTVS ’08, Boston, MA, USA, 1–3 October 2008; pp. 323–331. [Google Scholar] [CrossRef]
  2. Frances-Villora, J.V.; Rosado-Muñoz, A.; Martínez-Villena, J.M.; Bataller-Mompean, M.; Guerrero, J.F.; Wegrzyn, M. Hardware implementation of real-time Extreme Learning Machine in FPGA: analysis of precision, resource occupation and performance. Comput. Electr. Eng. 2016, 51, 139–156. [Google Scholar] [CrossRef]
  3. Zhuo, L.; Prasanna, V.K. Scalable and modular algorithms for floating-point matrix multiplication on reconfigurable computing systems. IEEE Trans. Parallel Distrib. Syst. 2007, 18, 433–448. [Google Scholar] [CrossRef]
  4. Campbell, S.J.; Khatri, S.P. Resource and Delay Efficient Matrix Multiplication Using Newer FPGA Devices. In Proceedings of the Proceedings of the 16th ACM Great Lakes Symposium on VLSI, Philadelphia, PA, USA, 30 April–1 May 2006; ACM: New York, NY, USA, 2006; pp. 308–311. [Google Scholar] [CrossRef]
  5. Shen, J.; Qiao, Y.; Huang, Y.; Wen, M.; Zhang, C. Towards a multi-array architecture for accelerating large-scale matrix multiplication on FPGAs. In Proceedings of the 2018 IEEE International Symposium on Circuits and Systems (ISCAS), Florence, Italy, 27–30 May 2018; pp. 1–5. [Google Scholar]
  6. Kestur, S.; Davis, J.D.; Chung, E.S. Towards a universal FPGA matrix-vector multiplication architecture. In Proceedings of the 2012 IEEE 20th Annual International Symposium on Field-Programmable Custom Computing Machines (FCCM), Toronto, ON, Canada, 29 April–1 May 2012; pp. 9–16. [Google Scholar]
  7. Dave, N.; Fleming, K.; King, M.; Pellauer, M.; Vijayaraghavan, M. Hardware acceleration of matrix multiplication on a xilinx FPGA. In Proceedings of the 5th IEEE/ACM International Conference on Formal Methods and Models for Codesign, MEMOCODE 2007, Nice, France, 30 May–1 June 2007; pp. 97–100. [Google Scholar]
  8. Kumar, V.B.; Joshi, S.; Patkar, S.B.; Narayanan, H. FPGA based high performance double-precision matrix multiplication. Int. J. Parallel Program. 2010, 38, 322–338. [Google Scholar] [CrossRef]
  9. Iakymchuk, T.; Rosado-Munoz, A.; Bataller-Mompean, M.; Frances-Villora, J.; Osimiry, E. Versatile Direct and Transpose Matrix Multiplication with chained operations: an Optimized Architecture using Circulant Matrices. IEEE Trans. Comput. 2016, 65, 3470–3479. [Google Scholar] [CrossRef]
  10. Wang, W.; Guo, K.; Gu, M.; Ma, Y.; Wang, Y. A universal FPGA-based floating-point matrix processor for mobile systems. In Proceedings of the 2014 International Conference on Field-Programmable Technology (FPT), Shanghai, China, 10–12 December 2014; pp. 139–146. [Google Scholar]
  11. Chung, C.C.; Liu, C.K.; Lee, D.H. FPGA-based accelerator platform for big data matrix processing. In Proceedings of the 2015 IEEE International Conference on Electron Devices and Solid-State Circuits (EDSSC), Singapore, 1–4 June 2015; pp. 221–224. [Google Scholar]
  12. Bodani, K.S.; Kumbhar, A.D. Designing an accelerated hardware architecture for polynomial matrix multiplications. In Proceedings of the Bombay Section Symposium (IBSS), Mumbai, India, 10–11 September 2015; pp. 1–6. [Google Scholar]
  13. Su, X.; Lei, F. Hybrid-Grained Dynamic Load Balanced GEMM on NUMA Architectures. Electronics 2018, 7, 359. [Google Scholar] [CrossRef]
  14. Davis, P.J. Circulant Matrices, 2nd ed.; American Mathematical Soc.: Providence, RI, USA, 2012; ISBN 978-0-8218-9165-0. [Google Scholar]
  15. Bahri, I.; Idkhajine, L.; Monmasson, E.; Benkhelifa, M.E.A. Hardware/software codesign guidelines for system on chip FPGA-based sensorless AC drive applications. IEEE Trans. Ind. Inform. 2013, 9, 2165–2176. [Google Scholar] [CrossRef]
  16. Cheng, O.; Abdulla, W.; Salcic, Z. Hardware–software codesign of automatic speech recognition system for embedded real-time applications. IEEE Trans. Ind. Electron. 2011, 58, 850–859. [Google Scholar] [CrossRef]
  17. Gomperts, A.; Ukil, A.; Zurfluh, F. Development and implementation of parameterized FPGA-based general purpose neural networks for online applications. IEEE Trans. Ind. Inform. 2011, 7, 78–89. [Google Scholar] [CrossRef]
  18. Brox, M.; Sánchez-Solano, S.; del Toro, E.; Brox, P.; Moreno-Velo, F.J. CAD tools for hardware implementation of embedded fuzzy systems on FPGAs. IEEE Trans. Ind. Inform. 2013, 9, 1635–1644. [Google Scholar] [CrossRef]
  19. Rosado-Muñoz, A.; Soria-Olivas, E.; Gomez-Chova, L.; Francés, J.V. An IP core and GUI for implementing multilayer perceptron with a fuzzy activation function on configurable logic devices. J. Univers. Comput. Sci. 2008, 14, 1678–1694. [Google Scholar]
  20. Nakata, M.; Takao, Y.; Noda, S.; Himeno, R. A fast implementation of matrix-matrix product in double-double precision on Nvidia c2050 and application to semidefinite programming. In Proceedings of the 2012 Third International Conference on Networking and Computing (ICNC), Okinawa, Japan, 5–7 December 2012; pp. 68–75. [Google Scholar]
  21. Salim, M.; Akkirman, A.O.; Hidayetoglu, M.; Gurel, L. Comparative benchmarking: Matrix multiplication on a multicore coprocessor and a GPU. In Proceedings of the Computational Electromagnetics International Workshop (CEM), Izmir, Turkey, 1–4 July 2015; pp. 1–2. [Google Scholar]
  22. Jiang, J.; Mirian, V.; Tang, K.P.; Chow, P.; Xing, Z. Matrix multiplication based on scalable macro-pipelined FPGA accelerator architecture. In Proceedings of the International Conference on Reconfigurable Computing and FPGAs, ReConFig’09, Cancun, Mexico, 9–11 December 2009; pp. 48–53. [Google Scholar]
  23. Qasim, S.M.; Abbasi, S.A.; Almashary, B. A proposed FPGA-based parallel architecture for matrix multiplication. In Proceedings of the IEEE Asia Pacific Conference on Circuits and Systems, APCCAS 2008, Macao, China, 30 November–3 December 2008; pp. 1763–1766. [Google Scholar]
  24. Sonawane, D.N.; Sutaone, M.S.; Malek, I. Systolic architecture for integer point matrix multiplication using FPGA. In Proceedings of the 4th IEEE Conference on Industrial Electronics and Applications, ICIEA 2009, Xi’an, China, 25–27 May 2009; pp. 3822–3825. [Google Scholar]
  25. Tertei, D.T.; Piat, J.; Devy, M. FPGA design and implementation of a matrix multiplier based accelerator for 3D EKF SLAM. In Proceedings of the 2014 International Conference on ReConFigurable Computing and FPGAs (ReConFig), Cancun, Mexico, 8–10 December 2014; pp. 1–6. [Google Scholar]
  26. Wu, P.J.; Lin, C.Y.; Lai, B.C.C. Design of Application Specific Throughput Processor for Matrix Operations. In Proceedings of the 2015 18th International Conference on Network-Based Information Systems (NBiS), Taipei, Taiwan, 2–4 September 2015; pp. 324–331. [Google Scholar]
  27. D’Hollander, E.H. High-Level Synthesis Optimization for Blocked Floating-Point Matrix Multiplication. SIGARCH Comput. Archit. News 2017, 44, 74–79. [Google Scholar] [CrossRef] [Green Version]
Figure 1. Physical placement of 3 × 3 matrix elements in memory columns in normal (top) and circulant (bottom) forms. Yellow and red marked memory locations represent the first column and the first row of a matrix. Grey blocks are labeled, from left to right, R A M 0 , R A M 1 , R A M 2 , since they correspond to memory blocks in hardware.
Figure 1. Physical placement of 3 × 3 matrix elements in memory columns in normal (top) and circulant (bottom) forms. Yellow and red marked memory locations represent the first column and the first row of a matrix. Grey blocks are labeled, from left to right, R A M 0 , R A M 1 , R A M 2 , since they correspond to memory blocks in hardware.
Electronics 08 00094 g001
Figure 2. Hardware computation structure for matrix arithmetic operations. ALU-RAM blocks (shown in columns) are chained for iterated computational the FSM controls the data flow where one matrix operand is stored in RAM blocks and the second operand, either matrix, vector or scalar, is externally fed from a memory (G-mem) or any other external hardware.
Figure 2. Hardware computation structure for matrix arithmetic operations. ALU-RAM blocks (shown in columns) are chained for iterated computational the FSM controls the data flow where one matrix operand is stored in RAM blocks and the second operand, either matrix, vector or scalar, is externally fed from a memory (G-mem) or any other external hardware.
Electronics 08 00094 g002
Figure 3. Single ALU-RAM column interconnection structure. The RAM block is divided logically into two equal banks, one storing the current operand and the other saving the result of operation. The circulant address generator provides read and write addresses for both banks and modifies the address provided by the FSM in case of required direct or transposed matrix elements.
Figure 3. Single ALU-RAM column interconnection structure. The RAM block is divided logically into two equal banks, one storing the current operand and the other saving the result of operation. The circulant address generator provides read and write addresses for both banks and modifies the address provided by the FSM in case of required direct or transposed matrix elements.
Electronics 08 00094 g003
Figure 4. MATLAB GUI interface for the SCUMO tool.
Figure 4. MATLAB GUI interface for the SCUMO tool.
Electronics 08 00094 g004
Figure 5. Operation selection option in the software design tool.
Figure 5. Operation selection option in the software design tool.
Electronics 08 00094 g005
Figure 6. Bit length option in the software design tool.
Figure 6. Bit length option in the software design tool.
Electronics 08 00094 g006
Figure 7. Report analysis option in the software design tool.
Figure 7. Report analysis option in the software design tool.
Electronics 08 00094 g007
Figure 8. Console window reports option in the software design tool.
Figure 8. Console window reports option in the software design tool.
Electronics 08 00094 g008
Figure 9. MATLAB GUI interface of the IP core generation option.
Figure 9. MATLAB GUI interface of the IP core generation option.
Electronics 08 00094 g009
Table 1. Matrix-by-matrix multiplication possibilities using scalar-by-vector operations.
Table 1. Matrix-by-matrix multiplication possibilities using scalar-by-vector operations.
OperationResulting Matrix Formula
R = P G R i c = k = 1 N G k , i P k c
R = P G t R i c = k = 1 N G i , k P k c
R = P t G R i c = k = 1 N G k , i P k r
R = P t G t R i c = k = 1 N G i , k P k r
R = G P R i r = k = 1 N G i , k P k c
R = G t P R i r = k = 1 N G k , i P k c
R = G P t R i r = k = 1 N G i , k P k r
R = G t P t R i r = k = 1 N G k , i P k r
Table 2. Memory contents and internal address position of P matrix elements in RAM memory blocks used in a matrix of size N = 3, in circulant form.
Table 2. Memory contents and internal address position of P matrix elements in RAM memory blocks used in a matrix of size N = 3, in circulant form.
A 0 RAM 0 A 1 RAM 1 A 2 RAM 2
0 P 1 , 1 0 P 1 , 2 0 P 1 , 3
1 P 2 , 3 1 P 2 , 1 1 P 2 , 2
2 P 3 , 2 2 P 3 , 3 2 P 3 , 1
Table 3. Resources used by different hardware cores synthesized in a xc7vx485tffg1157 Virtex7 device with an 18-bit data size.
Table 3. Resources used by different hardware cores synthesized in a xc7vx485tffg1157 Virtex7 device with an 18-bit data size.
Matrix Size1025100250500
Slice Regs5561312465511,46121,836
LUTs9482354934522,74443,912
BRAM181025100250500
DSP48E1025100250500
f m a x 404.4404.4364.0355.1346.1
Slice vs. Size55.652.546.645.843.7
Table 4. Number of clock cycles and peak clock speed for different operations allowed by the computation core.
Table 4. Number of clock cycles and peak clock speed for different operations allowed by the computation core.
Matrix Size1025100250500
Loading (cycles)10863310,00862,508250,008
Unloading (cycles)10663110,00662,506250,006
Matrix mult(cycles)10763210,00762,507250,007
Matrix add(cycles)10763210,00762,507250,007
Vector mult (cycles)1732107257507
Scalar mult (cycles)1732107257507
Loading (kHz)3744638.936.45.71.4
Unloading (kHz)3815640.936.45.71.4
matrix mult (kHz)3779639.836.45.71.4
Matrix add (kHz)3779639.836.45.71.4
Vector mult (kHz)23,78812,637.53401.91381.7682.6
Scalar mult (kHz)23,78812,637.53401.91381.7682.6

Share and Cite

MDPI and ACS Style

Abbaszadeh, A.; Iakymchuk, T.; Bataller-Mompeán, M.; Francés-Villora, J.V.; Rosado-Muñoz, A. AnScalable Matrix Computing Unit Architecture for FPGA, and SCUMO User Design Interface. Electronics 2019, 8, 94. https://doi.org/10.3390/electronics8010094

AMA Style

Abbaszadeh A, Iakymchuk T, Bataller-Mompeán M, Francés-Villora JV, Rosado-Muñoz A. AnScalable Matrix Computing Unit Architecture for FPGA, and SCUMO User Design Interface. Electronics. 2019; 8(1):94. https://doi.org/10.3390/electronics8010094

Chicago/Turabian Style

Abbaszadeh, Asgar, Taras Iakymchuk, Manuel Bataller-Mompeán, Jose V. Francés-Villora, and Alfredo Rosado-Muñoz. 2019. "AnScalable Matrix Computing Unit Architecture for FPGA, and SCUMO User Design Interface" Electronics 8, no. 1: 94. https://doi.org/10.3390/electronics8010094

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop