2022-02-02 18:00:44 +01:00
|
|
|
/*
|
|
|
|
* =======================================================================================
|
|
|
|
*
|
|
|
|
* Author: Jan Eitzinger (je), jan.eitzinger@fau.de
|
|
|
|
* Copyright (c) 2020 RRZE, University Erlangen-Nuremberg
|
|
|
|
*
|
|
|
|
* This file is part of MD-Bench.
|
|
|
|
*
|
|
|
|
* MD-Bench is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU Lesser General Public License as published
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MD-Bench is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
|
|
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
* with MD-Bench. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
* =======================================================================================
|
|
|
|
*/
|
|
|
|
|
2022-04-05 02:57:23 +02:00
|
|
|
#include <stdio.h>
|
2022-03-15 02:40:56 +01:00
|
|
|
#include <stdlib.h>
|
2022-02-02 21:54:18 +01:00
|
|
|
#include <string.h>
|
2022-02-02 18:00:44 +01:00
|
|
|
#include <immintrin.h>
|
|
|
|
#include <zmmintrin.h>
|
|
|
|
|
2022-04-05 02:57:23 +02:00
|
|
|
#ifndef CLUSTER_M
|
|
|
|
# define CLUSTER_M 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CLUSTER_N
|
|
|
|
# define CLUSTER_N 1
|
|
|
|
#endif
|
|
|
|
|
2022-03-15 02:40:56 +01:00
|
|
|
#ifdef AVX512
|
2022-03-16 14:52:55 +01:00
|
|
|
# if PRECISION == 2
|
|
|
|
# include "simd/avx512_double.h"
|
|
|
|
# else
|
|
|
|
# include "simd/avx512_float.h"
|
|
|
|
# endif
|
2022-03-02 23:12:04 +01:00
|
|
|
#else
|
2022-03-16 14:52:55 +01:00
|
|
|
# if PRECISION == 2
|
|
|
|
# include "simd/avx_avx2_double.h"
|
|
|
|
# else
|
|
|
|
# include "simd/avx_avx2_float.h"
|
|
|
|
# endif
|
2022-03-02 23:12:04 +01:00
|
|
|
#endif
|
2022-02-04 17:52:48 +01:00
|
|
|
|
2022-03-16 14:52:55 +01:00
|
|
|
#define SIMD_PRINT_REAL(a) simd_print_real(#a, a);
|
|
|
|
#define SIMD_PRINT_MASK(a) simd_print_mask(#a, a);
|
2022-03-15 02:40:56 +01:00
|
|
|
|
2022-02-02 21:54:18 +01:00
|
|
|
static inline void simd_print_real(const char *ref, MD_SIMD_FLOAT a) {
|
2022-02-04 17:52:48 +01:00
|
|
|
double x[VECTOR_WIDTH];
|
2022-02-02 21:54:18 +01:00
|
|
|
memcpy(x, &a, sizeof(x));
|
|
|
|
|
|
|
|
fprintf(stdout, "%s: ", ref);
|
2022-02-04 17:52:48 +01:00
|
|
|
for(int i = 0; i < VECTOR_WIDTH; i++) {
|
2022-02-02 21:54:18 +01:00
|
|
|
fprintf(stdout, "%f ", x[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stdout, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void simd_print_mask(const char *ref, MD_SIMD_MASK a) { fprintf(stdout, "%s: %x\n", ref, simd_mask_to_u32(a)); }
|