|
openGPMP
Open Source Mathematics Package
|
#include <chrono>#include <cstdlib>#include <ctime>#include <emmintrin.h>#include <immintrin.h>#include <iostream>#include <random>Go to the source code of this file.
Functions | |
| void | multiply_matrices (float A[N][N], float B[N][N], float C[N][N]) |
| void | multiply_matrices_std (float A[N][N], float B[N][N], float C[N][N]) |
| int | main () |
Variables | |
| const int | N = 12 |
| int main | ( | void | ) |
Definition at line 78 of file _simd_intel_mtx.cpp.
References python.linalg::A, python.linalg::B, python.linalg::C, multiply_matrices(), multiply_matrices_std(), and N.
| void multiply_matrices | ( | float | A[N][N], |
| float | B[N][N], | ||
| float | C[N][N] | ||
| ) |
Definition at line 12 of file _simd_intel_mtx.cpp.
References python.linalg::A, python.linalg::B, python.linalg::C, N, and python.linalg::res.
Referenced by main().
| void multiply_matrices_std | ( | float | A[N][N], |
| float | B[N][N], | ||
| float | C[N][N] | ||
| ) |
Definition at line 61 of file _simd_intel_mtx.cpp.
References python.linalg::A, python.linalg::B, python.linalg::C, and N.
Referenced by main().
| const int N = 12 |
Definition at line 9 of file _simd_intel_mtx.cpp.
Referenced by gpmp::ml::LinearRegression::best_fit(), gpmp::ml::LinearRegression::calculate_coeffecient(), gpmp::ml::LinearRegression::calculate_constant(), gpu_mtx_add(), main(), multiply_matrices(), and multiply_matrices_std().