casadi_mv.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 "mv"
21 template<typename T1>
22 void casadi_mv(const T1* x, const casadi_int* sp_x, const T1* y, T1* z, casadi_int tr) {
23  casadi_int ncol_x, i, el;
24  const casadi_int *colind_x, *row_x;
25  if (!x || !y || !z) return;
26  // Get sparsities
27  ncol_x = sp_x[1];
28  colind_x = sp_x+2; row_x = sp_x + 2 + ncol_x+1;
29  if (tr) {
30  // loop over the columns of x
31  for (i=0; i<ncol_x; ++i) {
32  // loop over the non-zeros of x
33  for (el=colind_x[i]; el<colind_x[i+1]; ++el) {
34  z[i] += x[el] * y[row_x[el]];
35  }
36  }
37  } else {
38  // loop over the columns of x
39  for (i=0; i<ncol_x; ++i) {
40  // loop over the non-zeros of x
41  for (el=colind_x[i]; el<colind_x[i+1]; ++el) {
42  z[row_x[el]] += x[el] * y[i];
43  }
44  }
45  }
46 }