casadi_mtimes_dense.hpp
1 //
2 // MIT No Attribution
3 //
4 // Copyright (C) 2010-2023 Joel Andersson, Joris Gillis, Moritz Diehl, KU Leuven.
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining a copy of this
7 // software and associated documentation files (the "Software"), to deal in the Software
8 // without restriction, including without limitation the rights to use, copy, modify,
9 // merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
10 // permit persons to whom the Software is furnished to do so.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
13 // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
14 // PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
15 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
16 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
17 // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18 //
19 
20 // SYMBOL "mtimes_dense"
21 template<typename T1>
22 void casadi_mtimes_dense(const T1* x, casadi_int nrow_x, casadi_int ncol_x,
23  const T1* y, casadi_int ncol_y, T1* z, casadi_int tr) {
24  casadi_int i, j, k;
25  if (tr) {
26  // z(ncol_x, ncol_y) += x(nrow_x, ncol_x)^T * y(nrow_x, ncol_y)
27  for (i=0; i<ncol_y; ++i) {
28  for (j=0; j<ncol_x; ++j) {
29  for (k=0; k<nrow_x; ++k) {
30  z[j + i*ncol_x] += x[k + j*nrow_x] * y[k + i*nrow_x];
31  }
32  }
33  }
34  } else {
35  // z(nrow_x, ncol_y) += x(nrow_x, ncol_x) * y(ncol_x, ncol_y)
36  for (i=0; i<ncol_y; ++i) {
37  for (j=0; j<nrow_x; ++j) {
38  for (k=0; k<ncol_x; ++k) {
39  z[j + i*nrow_x] += x[j + k*nrow_x] * y[k + i*ncol_x];
40  }
41  }
42  }
43  }
44 }