casadi_kron_sparse_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 "kron_sparse_dense"
21 // r = kron(a, b) where a has CSC sparsity sp_a (mA, nA),
22 // b is (mB, nB) dense column-major.
23 // r is laid out per the kron sparsity Sparsity::kron(sp_a, dense(mB,nB)).
24 template<typename T1>
25 void casadi_kron_sparse_dense(const T1* a, const casadi_int* sp_a,
26  const T1* b, casadi_int mB, casadi_int nB,
27  T1* r) {
28  casadi_int nA = sp_a[1];
29  const casadi_int* a_colind = sp_a+2;
30  casadi_int a_cc, b_cc, a_el, rr, k;
31  T1 a_val;
32  k = 0;
33  for (a_cc=0; a_cc<nA; ++a_cc) {
34  for (b_cc=0; b_cc<nB; ++b_cc) {
35  for (a_el=a_colind[a_cc]; a_el<a_colind[a_cc+1]; ++a_el) {
36  a_val = a[a_el];
37  for (rr=0; rr<mB; ++rr) {
38  r[k++] = a_val * b[b_cc*mB + rr];
39  }
40  }
41  }
42  }
43 }