1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
/******************************************************************************
* Copyright (c) Intel Corporation - All rights reserved. *
* This file is part of the LIBXSMM library. *
* *
* For information on the license, see the LICENSE file. *
* Further information: https://github.com/hfp/libxsmm/ *
* SPDX-License-Identifier: BSD-3-Clause *
******************************************************************************/
/* Evangelos Georganas (Intel Corp.)
******************************************************************************/
#include <libxsmm.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <math.h>
LIBXSMM_INLINE
void sfill_matrix ( float *matrix, unsigned int ld, unsigned int m, unsigned int n )
{
unsigned int i, j;
double dtmp;
if ( ld < m )
{
fprintf(stderr,"Error is sfill_matrix: ld=%u m=%u mismatched!\n",ld,m);
exit(EXIT_FAILURE);
}
for ( j = 1; j <= n; j++ )
{
/* Fill through the leading dimension */
for ( i = 1; i <= ld; i++ )
{
dtmp = 1.0 - 2.0*libxsmm_rng_f64();
matrix [ (j-1)*ld + (i-1) ] = (float) dtmp;
}
}
}
int main(int argc, char* argv[])
{
unsigned int m = 64, n = 64, perform_scale = 1, perform_shift = 1, perform_bias = 1, scale_rows = 1, vectors_size, i, j, k, iters = 10000;
libxsmm_blasint ld_in = 64, ld_out = 64;
float *sinp, *sout, *scale_vals, *shift_vals, *bias_vals, *ref_out;
libxsmm_meltw_scal_flags jit_flags = 0;
libxsmm_meltwfunction_scale kernel;
libxsmm_meltw_scale_param params;
libxsmm_matdiff_info norms_out;
unsigned long long l_start, l_end;
double l_total = 0.0, l_total2 = 0.0;
libxsmm_init();
libxsmm_matdiff_clear(&norms_out);
if ( argc > 1 ) m = atoi(argv[1]);
if ( argc > 2 ) n = atoi(argv[2]);
if ( argc > 3 ) ld_in = atoi(argv[3]);
if ( argc > 4 ) ld_out = atoi(argv[4]);
if ( argc > 5 ) perform_shift = atoi(argv[5]);
if ( argc > 6 ) perform_scale = atoi(argv[6]);
if ( argc > 7 ) perform_bias = atoi(argv[7]);
if ( argc > 8 ) scale_rows = atoi(argv[8]);
if ( argc > 9 ) iters = atoi(argv[9]);
m = LIBXSMM_MAX(m,1);
n = LIBXSMM_MAX(n,1);
ld_in = LIBXSMM_MAX(ld_in,(libxsmm_blasint)m);
ld_out = LIBXSMM_MAX(ld_out,(libxsmm_blasint)m);
vectors_size = (scale_rows == 1) ? n : m;
/* Allocate arrays */
sinp = (float*) malloc( ld_in*n*sizeof(float) );
sout = (float*) malloc( ld_out*n*sizeof(float) );
ref_out = (float*) malloc( ld_out*n*sizeof(float) );
scale_vals = (float*) malloc(vectors_size*sizeof(float) );
shift_vals = (float*) malloc(vectors_size*sizeof(float) );
bias_vals = (float*) malloc(vectors_size*sizeof(float) );
/* Fill matrices with random data */
sfill_matrix ( sinp, ld_in, m, n );
sfill_matrix ( scale_vals, vectors_size, vectors_size, 1 );
sfill_matrix ( shift_vals, vectors_size, vectors_size, 1 );
sfill_matrix ( bias_vals, vectors_size, vectors_size, 1 );
/* Calculate reference results... */
if (scale_rows == 1) {
for (j = 0; j < n; j++) {
float scale = scale_vals[j];
float shift = shift_vals[j];
float bias = bias_vals[j];
for (i = 0; i < m; i++) {
float out;
out = sinp[j*ld_in + i];
if (perform_shift) out += shift;
if (perform_scale) out *= scale;
if (perform_bias) out += bias;
ref_out[j*ld_out + i] = out;
}
}
} else {
/* In this case we reduce columns */
for (i = 0; i < m; i++) {
float scale = scale_vals[i];
float shift = shift_vals[i];
float bias = bias_vals[i];
for (j = 0; j < n; j++) {
float out;
out = sinp[j*ld_in + i];
if (perform_shift) out += shift;
if (perform_scale) out *= scale;
if (perform_bias) out += bias;
ref_out[j*ld_out + i] = out;
}
}
}
/* Generate JITED kernel */
if (scale_rows == 1) {
jit_flags = LIBXSMM_MELTW_FLAG_SCALE_ROWS;
} else {
jit_flags = LIBXSMM_MELTW_FLAG_SCALE_COLS;
}
if (perform_scale == 1) {
jit_flags |= LIBXSMM_MELTW_FLAG_SCALE_MULT;
}
if (perform_shift == 1) {
jit_flags |= LIBXSMM_MELTW_FLAG_SCALE_SHIFT;
}
if (perform_bias == 1) {
jit_flags |= LIBXSMM_MELTW_FLAG_SCALE_ADD_BIAS;
}
printf("JITing scale kernel... \n");
kernel = libxsmm_dispatch_meltw_scale(m, n, &ld_in, &ld_out, LIBXSMM_DATATYPE_F32, LIBXSMM_DATATYPE_F32, jit_flags);
/* Call JITed kernel and compare result */
printf("Calling JITed reduce kernel... \n");
params.in_ptr = sinp;
params.out_ptr = sout;
params.shift_vals_ptr = shift_vals;
params.scale_vals_ptr = scale_vals;
params.bias_vals_ptr = bias_vals;
kernel( ¶ms );
/* compare */
printf("##########################################\n");
printf("# Correctness - Eltwise scale out #\n");
printf("##########################################\n");
libxsmm_matdiff(&norms_out, LIBXSMM_DATATYPE_F32, n * ld_out, 1, ref_out, sout, 0, 0);
printf("L1 reference : %.25g\n", norms_out.l1_ref);
printf("L1 test : %.25g\n", norms_out.l1_tst);
printf("L2 abs.error : %.24f\n", norms_out.l2_abs);
printf("L2 rel.error : %.24f\n", norms_out.l2_rel);
printf("Linf abs.error: %.24f\n", norms_out.linf_abs);
printf("Linf rel.error: %.24f\n", norms_out.linf_rel);
printf("Check-norm : %.24f\n\n", norms_out.normf_rel);
l_start = libxsmm_timer_tick();
/* Calculate reference results... */
for (k = 0; k < iters; k++) {
/* Calculate reference results... */
if (scale_rows == 1) {
for (j = 0; j < n; j++) {
float scale = scale_vals[j];
float shift = shift_vals[j];
float bias = bias_vals[j];
for (i = 0; i < m; i++) {
float out;
out = sinp[j*ld_in + i];
if (perform_shift) out += shift;
if (perform_scale) out *= scale;
if (perform_bias) out += bias;
ref_out[j*ld_out + i] = out;
}
}
} else {
/* In this case we reduce columns */
for (i = 0; i < m; i++) {
float scale = scale_vals[i];
float shift = shift_vals[i];
float bias = bias_vals[i];
for (j = 0; j < n; j++) {
float out;
out = sinp[j*ld_in + i];
if (perform_shift) out += shift;
if (perform_scale) out *= scale;
if (perform_bias) out += bias;
ref_out[j*ld_out + i] = out;
}
}
}
}
l_end = libxsmm_timer_tick();
l_total = libxsmm_timer_duration(l_start, l_end);
printf("Reference time = %.5g\n", ((double)(l_total)));
l_start = libxsmm_timer_tick();
for (k = 0; k < iters; k++) {
kernel( ¶ms );
}
l_end = libxsmm_timer_tick();
l_total2 = libxsmm_timer_duration(l_start, l_end);
printf("Optimized time = %.5g\n", ((double)(l_total2)));
printf("Speedup is = %.5g\n", ((double)(l_total/l_total2)));
free(sinp);
free(sout);
free(ref_out);
free(scale_vals);
free(bias_vals);
free(shift_vals);
return EXIT_SUCCESS;
}
|