casadi_kron_contract_outer_dense_sparse.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 "kron_contract_outer_dense_sparse"
21 // y[r,s] = sum over (i,j) in a's nonzeros of a[i,j] * m[i*mB+r, j*nB+s]
22 // where m is dense (mA*mB, nA*nB), a is sparse (sp_a, mA x nA), y is dense (mB, nB).
23 template<typename T1>
24 void casadi_kron_contract_outer_dense_sparse(const T1* m, casadi_int mB, casadi_int nB,
25  const T1* a, const casadi_int* sp_a,
26  T1* y) {
27  casadi_int mA = sp_a[0], nA = sp_a[1];
28  const casadi_int* a_colind = sp_a+2;
29  const casadi_int* a_row = sp_a+2+nA+1;
30  casadi_int j, a_el, i, s, rr, k;
31  T1 a_val;
32  const T1* m_col, *m_block;
33  T1* y_col;
34  for (k=0; k<mB*nB; ++k) y[k] = 0;
35  for (j=0; j<nA; ++j) {
36  for (a_el=a_colind[j]; a_el<a_colind[j+1]; ++a_el) {
37  i = a_row[a_el];
38  a_val = a[a_el];
39  for (s=0; s<nB; ++s) {
40  m_col = m + (j*nB+s)*(mA*mB);
41  m_block = m_col + i*mB;
42  y_col = y + s*mB;
43  for (rr=0; rr<mB; ++rr) y_col[rr] += a_val * m_block[rr];
44  }
45  }
46  }
47 }