Learn R Programming

HiPLARM (version 0.1)

OptimisematmulDgeDge: Optimise the matmul routine for two dge matrices

Description

This computes the optimal crossover point between the PLASMA (CPU) and MAGMA (GPU) libraries. For smaller matrices PLASMA is generally used and for larger matrices MAGMA will be used. This function calculates this for matrix multiplication function in this package and saves it for future use.

Usage

OptimisematmulDgeDge(increment = 128, verbose = FALSE)

Arguments

increment
This is the step between the problem sizes being calculate. We compare the timings at different problem sizes for the PLASMA and MAGMA implementations. This is the size between those problem sizes. A smaller increment will give a more accurate crossover point, however, 128 should be sufficient.
verbose
This displays the timing information for the operations if it is set to TRUE. It is FALSE by default.

Details

This simply runs the matrix multiplication function, for two dge matrices, testing it numerous times at different problem sizes. It benchmarks the PLASMA and MAGMA libraries against each other. For smaller problem sizes PLASMA will be faster, as the size increases the MAGMA library will become more optimal. This routine will find and save that optimal point for future use.

Examples

Run this code
	OptimisematmulDgeDge(256,TRUE)

Run the code above in your browser using DataLab