Lines Matching refs:vals
47 EIGEN_DONT_INLINE Scalar* setinnerrand_eigen(const Coordinates& coords, const Values& vals);
48 EIGEN_DONT_INLINE Scalar* setrand_eigen_dynamic(const Coordinates& coords, const Values& vals);
49 EIGEN_DONT_INLINE Scalar* setrand_eigen_compact(const Coordinates& coords, const Values& vals);
50 EIGEN_DONT_INLINE Scalar* setrand_eigen_sumeq(const Coordinates& coords, const Values& vals);
51 EIGEN_DONT_INLINE Scalar* setrand_eigen_gnu_hash(const Coordinates& coords, const Values& vals);
52 EIGEN_DONT_INLINE Scalar* setrand_eigen_google_dense(const Coordinates& coords, const Values& vals);
53 EIGEN_DONT_INLINE Scalar* setrand_eigen_google_sparse(const Coordinates& coords, const Values& vals…
54 EIGEN_DONT_INLINE Scalar* setrand_scipy(const Coordinates& coords, const Values& vals);
55 EIGEN_DONT_INLINE Scalar* setrand_ublas_mapped(const Coordinates& coords, const Values& vals);
56 EIGEN_DONT_INLINE Scalar* setrand_ublas_coord(const Coordinates& coords, const Values& vals);
57 EIGEN_DONT_INLINE Scalar* setrand_ublas_compressed(const Coordinates& coords, const Values& vals);
58 EIGEN_DONT_INLINE Scalar* setrand_ublas_genvec(const Coordinates& coords, const Values& vals);
59 EIGEN_DONT_INLINE Scalar* setrand_mtl(const Coordinates& coords, const Values& vals);
194 EIGEN_DONT_INLINE Scalar* setinnerrand_eigen(const Coordinates& coords, const Values& vals) in setinnerrand_eigen() argument
201 mat.insert(coords[i].x(), coords[i].y()) = vals[i]; in setinnerrand_eigen()
208 EIGEN_DONT_INLINE Scalar* setrand_eigen_dynamic(const Coordinates& coords, const Values& vals) in setrand_eigen_dynamic() argument
215 mat.coeffRef(coords[i].x(), coords[i].y()) += vals[i]; in setrand_eigen_dynamic()
222 EIGEN_DONT_INLINE Scalar* setrand_eigen_sumeq(const Coordinates& coords, const Values& vals) in setrand_eigen_sumeq() argument
233 aux.insert(coords[i].x(), coords[i].y()) += vals[i]; in setrand_eigen_sumeq()
241 EIGEN_DONT_INLINE Scalar* setrand_eigen_compact(const Coordinates& coords, const Values& vals) in setrand_eigen_compact() argument
248 setter.coeffRef(coords[i].x(), coords[i].y()) += vals[i]; in setrand_eigen_compact()
255 EIGEN_DONT_INLINE Scalar* setrand_eigen_gnu_hash(const Coordinates& coords, const Values& vals) in setrand_eigen_gnu_hash() argument
263 setter(coords[i].x(), coords[i].y()) += vals[i]; in setrand_eigen_gnu_hash()
271 EIGEN_DONT_INLINE Scalar* setrand_eigen_google_dense(const Coordinates& coords, const Values& vals) in setrand_eigen_google_dense() argument
278 setter(coords[i].x(), coords[i].y()) += vals[i]; in setrand_eigen_google_dense()
284 EIGEN_DONT_INLINE Scalar* setrand_eigen_google_sparse(const Coordinates& coords, const Values& vals) in setrand_eigen_google_sparse() argument
291 setter(coords[i].x(), coords[i].y()) += vals[i]; in setrand_eigen_google_sparse()
405 EIGEN_DONT_INLINE Scalar* setrand_scipy(const Coordinates& coords, const Values& vals) in setrand_scipy() argument
411 …coo_tocsr<Scalar>(SIZE,SIZE, coords.size(), coords, vals, mat._outerIndexPtr(), mat._innerIndexPtr… in setrand_scipy()
425 EIGEN_DONT_INLINE Scalar* setrand_ublas_mapped(const Coordinates& coords, const Values& vals) in setrand_ublas_mapped() argument
433 aux(coords[i].x(), coords[i].y()) += vals[i]; in setrand_ublas_mapped()
464 EIGEN_DONT_INLINE Scalar* setrand_ublas_genvec(const Coordinates& coords, const Values& vals) in setrand_ublas_genvec() argument
474 aux(coords[i].x(), coords[i].y()) += vals[i]; in setrand_ublas_genvec()
483 EIGEN_DONT_INLINE void setrand_mtl(const Coordinates& coords, const Values& vals);