/*************************************************************************
*
* Project
* _____ _____ __ __ _____
* / ____| __ \| \/ | __ \
* ___ _ __ ___ _ __ | | __| |__) | \ / | |__) |
* / _ \| '_ \ / _ \ '_ \| | |_ | ___/| |\/| | ___/
*| (_) | |_) | __/ | | | |__| | | | | | | |
* \___/| .__/ \___|_| |_|\_____|_| |_| |_|_|
* | |
* |_|
*
* Copyright (C) Akiel Aries, <akiel@akiel.org>, et al.
*
* This software is licensed as described in the file LICENSE, which
* you should have received as part of this distribution. The terms
* among other details are referenced in the official documentation
* seen here : https://akielaries.github.io/openGPMP/ along with
* important files seen in this project.
*
* You may opt to use, copy, modify, merge, publish, distribute
* and/or sell copies of the Software, and permit persons to whom
* the Software is furnished to do so, under the terms of the
* LICENSE file. As this is an Open Source effort, all implementations
* must be of the same methodology.
*
*
*
* This software is distributed on an AS IS basis, WITHOUT
* WARRANTY OF ANY KIND, either express or implied.
*
************************************************************************/
#include <cassert>
#include <cstddef>
#include <cstdint>
#include <iostream>
#include <openGPMP/linalg/mtx.hpp>
#include <vector>
#if defined(__x86_64__) || defined(__amd64__) || defined(__amd64)
/************************************************************************
*
* Matrix Operations for SSE ISA
*
************************************************************************/
#elif defined(__SSE2__)
// SSE2
#include <emmintrin.h>
#include <smmintrin.h>
/************************************************************************
*
* Matrix Operations on Arrays
*
************************************************************************/
// matrix addition using Intel intrinsics, accepts double arrays as matrices
void gpmp::linalg::Mtx::mtx_add(const double *A,
const double *B,
double *C,
int rows,
int cols) {
if (rows > 8) {
for (int i = 0; i < rows; ++i) {
int j = 0;
// requires at least size 4x4 size matrices
for (; j < cols - 1; j += 2) {
// load 4 elements from A, B, and C matrices using SIMD
__m128d a = _mm_loadu_pd(&A[i * cols + j]);
__m128d b = _mm_loadu_pd(&B[i * cols + j]);
__m128d c = _mm_loadu_pd(&C[i * cols + j]);
// perform vectorized addition and accumulate the result
c = _mm_add_pd(a, b);
// store the result back to the C matrix
_mm_storeu_pd(&C[i * cols + j], c);
}
// handle the remaining elements that are not multiples of 8
for (; j < cols; ++j) {
C[i * cols + j] = A[i * cols + j] + B[i * cols + j];
}
}
} else {
// use standard matrix addition
std_mtx_add(A, B, C, rows, cols);
}
}
#endif
#endif<--- #endif without #if