Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.48 KB

README.md

File metadata and controls

26 lines (17 loc) · 1.48 KB

HTGS-Tutorials

In this repository we present the tutorials for the HTGS API.

Getting Started

Please refer to tutorial0 for details on how to compile and run the tutorials.

Dependencies

HTGS is required, location is specified using: cmake -DHTGS_INCLUDE_DIR=

(Optional) OpenBlas; required for Tutorial3b

Adds two numbers together, purely for demonstration purposes of HTGS. (Note: Computational tasks for an algorithm's implementation should provide enough computational complexity to justify shipping data between tasks, see Figure)

Computes the Hadamard product. The tutorial uses the tutorial-utils to read/write blocks of matrices. Provided are two versions:

  1. hadamard-product - reads blocks of matrices from disk and computes the Hadamard product
  2. hadamard-product-no-read - generates blocks of matrices (no disk reading) and computes the Hadamard product

Computes matrix multiplication. Re-uses data representations found in tutorial2, and implements matrix multiplication in HTGS.