
Hitmap EXAMPLES
--------------------

A) DENSE ARRAYS

CannonMM:		Cannon's algorithm for Matrix Multiplication
Stencil_GaussSeidel2D:	Stencil program. Gauss-Seidel iterative method for the heat equation 2D
Stencil_Jacobi2D:	Stencil program. Jacobi iterative method for the heat equation 2D
LU_BackSubst:		Solving a linear equation system. LU factorization + Back substitution
QuickSort:		Quicksort algorithm to sort generic values of type 'double'
NAS_IS:			NAS Parallel Benchmarks. IS (Integer Sort) Bucket sort method, integer keys
NAS_MG:			NAS Parallel Benchmarks. MG (MultiGrid)
			V-cycle Multilevel Grid method for periodic Jacobi solver in 3-dimensions.
SmithWaterman:		Algorithm performs local sequence alignment of DNA sequences.		



B) SPARSE STRUCTURES

Heat:			Basic stencil-type operation in a graph.
Spring:			FEM method to calculate the equilibrium position of a spring system.
SpringDense:		FEM method to calculate the equilibrium position of a spring system.
Mmult:               	Sparse Matrix-vector multiplication.
  

Z) OTHER

graphs:			Folder with example graphs.
