//#ifdef DOUBLE_PRECISION
//#define FPTYPE double
//#else
//#define FPTYPE float
//#endif
__kernel void gemmN
{
// Thread identifiers
const int globalRow = get_global_id; // Row ID of C (0..N)
const int globalCol = get_global_id; // Col ID of C (0..N)
// Compute a single element
int acc = 0.0f;
for