jesunsahariar / FBLAS

BLAS implementation for Intel FPGA

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FBLAS

FBLAS is a porting of the BLAS numerical library (http://www.netlib.org/blas/) for Intel FPGA platform.

 

Code

Requirements

The library depends on:

Installation

After cloning this repository, make sure you clone the rapidjson submodule dependency, by executing the following command:

git submodule update --init

After this, the included Makefile can be used to compile code and modules generator:

make all

The FBLAS library

FBLAS provides two layers of abtraction:

  • HLS modules, which can be integrated into existing hardware designs. They implement BLAS routines (DOT, GEMV, GEMM, etc.). Modules have been designed with compute performance in mind, exploiting the spatial parallelism and fast on-chip memory on FPGAs and have a streaming interface: data is received and produced using channels. In this way, they can be composed and communicate using on-chip resources rather than off-chip device RAM;

  • a high-level Host API conforming to the classical BLAS interface that allows the user to invoke routines directly from an host program. No prior knowledge on FPGA architecture and/or tools is needed. The user writes a standard OpenCL program: she is responsible to transferring data to and from the device, she can invoke the desired FBLAS routines working on the FPGA memory, and then she copies back the result from the device.

For further information on how to use the library, please refer to the wiki

Contact

FBLAS can be used to build numerical applications, and modified to include new features. Contributions, comments, and issues are welcome!

License

FBLAS is published under the New BSD license, see LICENSE.

About

BLAS implementation for Intel FPGA

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C++ 69.5%Language:C 29.9%Language:Makefile 0.7%