==2967384== Memcheck, a memory error detector ==2967384== Copyright (C) 2002-2024, and GNU GPL'd, by Julian Seward et al. ==2967384== Using Valgrind-3.24.0 and LibVEX; rerun with -h for copyright info ==2967384== Command: /data/blackswan/ripley/R/R-devel-vg/bin/exec/R --vanilla ==2967384== R Under development (unstable) (2025-02-03 r87679) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. Natural language support but running in an English locale R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > pkgname <- "fastQR" > source(file.path(R.home("share"), "R", "examples-header.R")) > options(warn = 1) > library('fastQR') Attaching package: ‘fastQR’ The following object is masked from ‘package:base’: qr > > base::assign(".oldSearch", base::search(), pos = 'CheckExEnv') > base::assign(".old_wd", base::getwd(), pos = 'CheckExEnv') > cleanEx() > nameEx("qr") > ### * qr > > flush(stderr()); flush(stdout()) > > ### Name: qr > ### Title: The QR factorization of a matrix > ### Aliases: qr > > ### ** Examples > > ## generate sample data > set.seed(1234) > n <- 10 > p <- 6 > X <- matrix(rnorm(n * p, 1), n, p) > > ## QR factorization via Givens rotation > output <- qr(X, type = "givens", complete = TRUE) > Q <- output$Q > R <- output$R > > ## check > round(Q %*% R - X, 5) [,1] [,2] [,3] [,4] [,5] [,6] [1,] 0 0 0 0 0 0 [2,] 0 0 0 0 0 0 [3,] 0 0 0 0 0 0 [4,] 0 0 0 0 0 0 [5,] 0 0 0 0 0 0 [6,] 0 0 0 0 0 0 [7,] 0 0 0 0 0 0 [8,] 0 0 0 0 0 0 [9,] 0 0 0 0 0 0 [10,] 0 0 0 0 0 0 > max(abs(Q %*% R - X)) [1] 1.332268e-15 > > ## QR factorization via Householder rotation > output <- qr(X, type = "householder", complete = TRUE) > Q <- output$Q > R <- output$R > > ## check > round(Q %*% R - X, 5) [,1] [,2] [,3] [,4] [,5] [,6] [1,] 0 0 0 0 0 0 [2,] 0 0 0 0 0 0 [3,] 0 0 0 0 0 0 [4,] 0 0 0 0 0 0 [5,] 0 0 0 0 0 0 [6,] 0 0 0 0 0 0 [7,] 0 0 0 0 0 0 [8,] 0 0 0 0 0 0 [9,] 0 0 0 0 0 0 [10,] 0 0 0 0 0 0 > max(abs(Q %*% R - X)) [1] 8.881784e-16 > > > > > cleanEx() > nameEx("qrdowndate") > ### * qrdowndate > > flush(stderr()); flush(stdout()) > > ### Name: qrdowndate > ### Title: Fast downdating of the QR factorization > ### Aliases: qrdowndate > > ### ** Examples > > ## Remove one column > ## generate sample data > set.seed(10) > n <- 10 > p <- 6 > X <- matrix(rnorm(n * p, 1), n, p) > > ## get the initial QR factorization > output <- fastQR::qr(X, type = "householder", + nb = NULL, + complete = TRUE) > Q <- output$Q > R <- output$R > > ## select the column to be deleted > ## from X and update X > k <- 2 > X1 <- X[, -k] > > ## downdate the QR decomposition > out <- fastQR::qrdowndate(Q = Q, R = R, + k = k, m = 1, + type = "column", + fast = FALSE, + complete = TRUE) ==2967384== Invalid read of size 16 ==2967384== at 0x1868C542: _mm_loadu_pd (/usr/lib/gcc/x86_64-redhat-linux/14/include/emmintrin.h:134) ==2967384== by 0x1868C542: ploadu<__vector(2) double> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:746) ==2967384== by 0x1868C542: ploadt<__vector(2) double, 0> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/GenericPacketMath.h:969) ==2967384== by 0x1868C542: packet<0, __vector(2) double> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:238) ==2967384== by 0x1868C542: assignPacket<16, 0, __vector(2) double> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:675) ==2967384== by 0x1868C542: assignPacketByOuterInner<16, 0, __vector(2) double> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:689) ==2967384== by 0x1868C542: Eigen::internal::dense_assignment_loop, -1, -1, false> >, Eigen::internal::evaluator >, Eigen::internal::assign_op, 0>, 4, 0>::run(Eigen::internal::generic_dense_assignment_kernel, -1, -1, false> >, Eigen::internal::evaluator >, Eigen::internal::assign_op, 0>&) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:572) ==2967384== by 0x18692759: call_dense_assignment_loop, -1, -1, false>, Eigen::Matrix, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:785) ==2967384== by 0x18692759: run (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:954) ==2967384== by 0x18692759: call_assignment_no_alias, -1, -1, false>, Eigen::Matrix, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:890) ==2967384== by 0x18692759: call_assignment, -1, -1, false>, Eigen::Matrix, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:858) ==2967384== by 0x18692759: call_assignment, -1, -1, false>, Eigen::Matrix > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836) ==2967384== by 0x18692759: operator= > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Assign.h:66) ==2967384== by 0x18692759: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:716) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== Address 0x1102c210 is 0 bytes after a block of size 400 alloc'd ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x1868B13D: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x1868B13D: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x1868B13D: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x1868B13D: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x1868B13D: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1868B13D: _init2 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:810) ==2967384== by 0x1868B13D: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:340) ==2967384== by 0x1868B13D: Rcpp::traits::MatrixExporterForEigen, double>::get() (R-devel/site-library/RcppEigen/include/RcppEigenWrap.h:157) ==2967384== by 0x18694870: as > (R-devel/site-library/Rcpp/include/Rcpp/as.h:89) ==2967384== by 0x18694870: as > (R-devel/site-library/Rcpp/include/Rcpp/as.h:152) ==2967384== by 0x18694870: Rcpp::internal::generic_name_proxy<19, Rcpp::PreserveStorage>::operator Eigen::Matrix >() const (R-devel/site-library/Rcpp/include/Rcpp/vector/proxy.h:174) ==2967384== by 0x1869242B: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:712) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== > > ## check > round(out$Q %*% out$R - X1, 5) ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x43E3DC: mayHaveNaNOrInf (svn/R-devel/src/main/array.c:662) ==2967384== by 0x443222: matprod (svn/R-devel/src/main/array.c:807) ==2967384== by 0x443222: do_matprod (svn/R-devel/src/main/array.c:1426) ==2967384== by 0x4F12E9: Rf_eval (svn/R-devel/src/main/eval.c:1264) ==2967384== by 0x4F5E80: Rf_evalList (svn/R-devel/src/main/eval.c:3669) ==2967384== by 0x4F1275: Rf_eval (svn/R-devel/src/main/eval.c:1251) ==2967384== by 0x4F6651: Rf_evalListKeepMissing (svn/R-devel/src/main/eval.c:3743) ==2967384== by 0x43D1C0: do_Math2 (svn/R-devel/src/main/arithmetic.c:1659) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x42F09A: R_IsNA (svn/R-devel/src/main/arithmetic.c:110) ==2967384== by 0x42F09A: math2 (svn/R-devel/src/main/arithmetic.c:1406) ==2967384== by 0x43D477: do_Math2 (svn/R-devel/src/main/arithmetic.c:1693) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x6023E8: Rf_fround (svn/R-devel/src/nmath/fround.c:41) ==2967384== by 0x42F0B0: math2 (svn/R-devel/src/main/arithmetic.c:1406) ==2967384== by 0x43D477: do_Math2 (svn/R-devel/src/main/arithmetic.c:1693) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x602406: Rf_fround (svn/R-devel/src/nmath/fround.c:43) ==2967384== by 0x42F0B0: math2 (svn/R-devel/src/main/arithmetic.c:1406) ==2967384== by 0x43D477: do_Math2 (svn/R-devel/src/main/arithmetic.c:1693) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x602422: Rf_fround (svn/R-devel/src/nmath/fround.c:45) ==2967384== by 0x42F0B0: math2 (svn/R-devel/src/main/arithmetic.c:1406) ==2967384== by 0x43D477: do_Math2 (svn/R-devel/src/main/arithmetic.c:1693) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x6024B2: Rf_fround (svn/R-devel/src/nmath/fround.c:54) ==2967384== by 0x42F0B0: math2 (svn/R-devel/src/main/arithmetic.c:1406) ==2967384== by 0x43D477: do_Math2 (svn/R-devel/src/main/arithmetic.c:1693) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4BF7874: logb (in /usr/lib64/libm.so.6) ==2967384== by 0x6024D4: Rf_fround (svn/R-devel/src/nmath/fround.c:58) ==2967384== by 0x42F0B0: math2 (svn/R-devel/src/main/arithmetic.c:1406) ==2967384== by 0x43D477: do_Math2 (svn/R-devel/src/main/arithmetic.c:1693) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4BF7884: logb (in /usr/lib64/libm.so.6) ==2967384== by 0x6024D4: Rf_fround (svn/R-devel/src/nmath/fround.c:58) ==2967384== by 0x42F0B0: math2 (svn/R-devel/src/main/arithmetic.c:1406) ==2967384== by 0x43D477: do_Math2 (svn/R-devel/src/main/arithmetic.c:1693) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4BF7889: logb (in /usr/lib64/libm.so.6) ==2967384== by 0x6024D4: Rf_fround (svn/R-devel/src/nmath/fround.c:58) ==2967384== by 0x42F0B0: math2 (svn/R-devel/src/main/arithmetic.c:1406) ==2967384== by 0x43D477: do_Math2 (svn/R-devel/src/main/arithmetic.c:1693) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x6024FF: Rf_fround (svn/R-devel/src/nmath/fround.c:59) ==2967384== by 0x42F0B0: math2 (svn/R-devel/src/main/arithmetic.c:1406) ==2967384== by 0x43D477: do_Math2 (svn/R-devel/src/main/arithmetic.c:1693) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x6026DB: Rf_fround (svn/R-devel/src/nmath/fround.c:67) ==2967384== by 0x42F0B0: math2 (svn/R-devel/src/main/arithmetic.c:1406) ==2967384== by 0x43D477: do_Math2 (svn/R-devel/src/main/arithmetic.c:1693) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x60272C: Rf_fround (svn/R-devel/src/nmath/fround.c:69) ==2967384== by 0x42F0B0: math2 (svn/R-devel/src/main/arithmetic.c:1406) ==2967384== by 0x43D477: do_Math2 (svn/R-devel/src/main/arithmetic.c:1693) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x602662: Rf_fround (svn/R-devel/src/nmath/fround.c:85) ==2967384== by 0x42F0B0: math2 (svn/R-devel/src/main/arithmetic.c:1406) ==2967384== by 0x43D477: do_Math2 (svn/R-devel/src/main/arithmetic.c:1693) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x6027A7: Rf_fround (svn/R-devel/src/nmath/fround.c:85) ==2967384== by 0x42F0B0: math2 (svn/R-devel/src/main/arithmetic.c:1406) ==2967384== by 0x43D477: do_Math2 (svn/R-devel/src/main/arithmetic.c:1693) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x6027B9: Rf_fround (svn/R-devel/src/nmath/fround.c:85) ==2967384== by 0x42F0B0: math2 (svn/R-devel/src/main/arithmetic.c:1406) ==2967384== by 0x43D477: do_Math2 (svn/R-devel/src/main/arithmetic.c:1693) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x6027CC: Rf_fround (svn/R-devel/src/nmath/fround.c:85) ==2967384== by 0x42F0B0: math2 (svn/R-devel/src/main/arithmetic.c:1406) ==2967384== by 0x43D477: do_Math2 (svn/R-devel/src/main/arithmetic.c:1693) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x42F0ED: math2 (svn/R-devel/src/main/arithmetic.c:1423) ==2967384== by 0x43D477: do_Math2 (svn/R-devel/src/main/arithmetic.c:1693) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FA73C: Rf_formatReal (svn/R-devel/src/main/format.c:445) ==2967384== by 0x564019: printRealMatrix (svn/R-devel/src/main/printarray.c:244) ==2967384== by 0x565765: Rf_printMatrix (svn/R-devel/src/main/printarray.c:365) ==2967384== by 0x560687: Rf_PrintValueRec (svn/R-devel/src/main/print.c:941) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FA746: scientific (svn/R-devel/src/main/format.c:328) ==2967384== by 0x4FA746: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x564019: printRealMatrix (svn/R-devel/src/main/printarray.c:244) ==2967384== by 0x565765: Rf_printMatrix (svn/R-devel/src/main/printarray.c:365) ==2967384== by 0x560687: Rf_PrintValueRec (svn/R-devel/src/main/print.c:941) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FA748: scientific (svn/R-devel/src/main/format.c:328) ==2967384== by 0x4FA748: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x564019: printRealMatrix (svn/R-devel/src/main/printarray.c:244) ==2967384== by 0x565765: Rf_printMatrix (svn/R-devel/src/main/printarray.c:365) ==2967384== by 0x560687: Rf_PrintValueRec (svn/R-devel/src/main/print.c:941) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== [,1] [,2] [,3] [,4] [,5] [1,]==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x568E90: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:200) ==2967384== by 0x564255: printRealMatrix (svn/R-devel/src/main/printarray.c:247) ==2967384== by 0x565765: Rf_printMatrix (svn/R-devel/src/main/printarray.c:365) ==2967384== by 0x560687: Rf_PrintValueRec (svn/R-devel/src/main/print.c:941) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x568E96: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:200) ==2967384== by 0x564255: printRealMatrix (svn/R-devel/src/main/printarray.c:247) ==2967384== by 0x565765: Rf_printMatrix (svn/R-devel/src/main/printarray.c:365) ==2967384== by 0x560687: Rf_PrintValueRec (svn/R-devel/src/main/print.c:941) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== 0 0 0 0 0 [2,] 0 0 0 0 0 [3,] 0 0 0 0 0 [4,] 0 0 0 0 0 [5,] 0 0 0 0 0 [6,] 0 0 0 0 0 [7,] 0 0 0 0 0 [8,] 0 0 0 0 0 [9,] 0 0 0 0 0 [10,] 0 0 0 0 0 > max(abs(out$Q %*% out$R - X1)) ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5BBFA4: rmax (svn/R-devel/src/main/summary.c:291) ==2967384== by 0x5BD986: do_summary (svn/R-devel/src/main/summary.c:724) ==2967384== by 0x4F12E9: Rf_eval (svn/R-devel/src/main/eval.c:1264) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5BBFCE: rmax (svn/R-devel/src/main/summary.c:291) ==2967384== by 0x5BD986: do_summary (svn/R-devel/src/main/summary.c:724) ==2967384== by 0x4F12E9: Rf_eval (svn/R-devel/src/main/eval.c:1264) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5BC064: rmax (svn/R-devel/src/main/summary.c:291) ==2967384== by 0x5BD986: do_summary (svn/R-devel/src/main/summary.c:724) ==2967384== by 0x4F12E9: Rf_eval (svn/R-devel/src/main/eval.c:1264) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5BDF25: do_summary (svn/R-devel/src/main/summary.c:757) ==2967384== by 0x4F12E9: Rf_eval (svn/R-devel/src/main/eval.c:1264) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== [1]==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FA73C: Rf_formatReal (svn/R-devel/src/main/format.c:445) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FA746: scientific (svn/R-devel/src/main/format.c:328) ==2967384== by 0x4FA746: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FA748: scientific (svn/R-devel/src/main/format.c:328) ==2967384== by 0x4FA748: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FA74E: scientific (svn/R-devel/src/main/format.c:328) ==2967384== by 0x4FA74E: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4BDB08C: log10 (in /usr/lib64/libm.so.6) ==2967384== by 0x4FA788: scientific (svn/R-devel/src/main/format.c:344) ==2967384== by 0x4FA788: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4BF3CF6: __log10_finite (in /usr/lib64/libm.so.6) ==2967384== by 0x4FA788: scientific (svn/R-devel/src/main/format.c:344) ==2967384== by 0x4FA788: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4BF3D3F: __log10_finite (in /usr/lib64/libm.so.6) ==2967384== by 0x4FA788: scientific (svn/R-devel/src/main/format.c:344) ==2967384== by 0x4FA788: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4C3C8DA: ??? (in /usr/lib64/libm.so.6) ==2967384== by 0x4BF3DAC: __log10_finite (in /usr/lib64/libm.so.6) ==2967384== by 0x4FA788: scientific (svn/R-devel/src/main/format.c:344) ==2967384== by 0x4FA788: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4C3C8E9: ??? (in /usr/lib64/libm.so.6) ==2967384== by 0x4BF3DAC: __log10_finite (in /usr/lib64/libm.so.6) ==2967384== by 0x4FA788: scientific (svn/R-devel/src/main/format.c:344) ==2967384== by 0x4FA788: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x4C3C966: ??? (in /usr/lib64/libm.so.6) ==2967384== by 0x4BF3DAC: __log10_finite (in /usr/lib64/libm.so.6) ==2967384== by 0x4FA788: scientific (svn/R-devel/src/main/format.c:344) ==2967384== by 0x4FA788: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x4C3C96F: ??? (in /usr/lib64/libm.so.6) ==2967384== by 0x4BF3DAC: __log10_finite (in /usr/lib64/libm.so.6) ==2967384== by 0x4FA788: scientific (svn/R-devel/src/main/format.c:344) ==2967384== by 0x4FA788: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FA7B5: scientific (svn/R-devel/src/main/format.c:344) ==2967384== by 0x4FA7B5: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FA80A: scientific (svn/R-devel/src/main/format.c:348) ==2967384== by 0x4FA80A: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FA812: scientific (svn/R-devel/src/main/format.c:349) ==2967384== by 0x4FA812: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FAC4C: scientific (svn/R-devel/src/main/format.c:349) ==2967384== by 0x4FAC4C: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x4FAC5F: scientific (svn/R-devel/src/main/format.c:349) ==2967384== by 0x4FAC5F: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FA833: scientific (svn/R-devel/src/main/format.c:361) ==2967384== by 0x4FA833: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FA8AD: scientific (svn/R-devel/src/main/format.c:396) ==2967384== by 0x4FA8AD: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FA8E6: scientific (svn/R-devel/src/main/format.c:396) ==2967384== by 0x4FA8E6: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FA8F3: scientific (svn/R-devel/src/main/format.c:419) ==2967384== by 0x4FA8F3: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FAA19: Rf_formatReal (svn/R-devel/src/main/format.c:493) ==2967384== by 0x4FAD46: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FAD53: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x4FAD72: formatRealS (svn/R-devel/src/main/format.c:528) ==2967384== by 0x566DCC: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x568E90: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:200) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x568E96: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:200) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x568FE8: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:201) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x568EAC: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:207) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== by 0x417A17: main (svn/R-devel/src/main/Rmain.c:29) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5535A9B: _itoa_word (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/_itoa.c:183) ==2967384== by 0x553E8E3: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-process-arg.c:155) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568ECE: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:217) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5535AAC: _itoa_word (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/_itoa.c:183) ==2967384== by 0x553E8E3: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-process-arg.c:155) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568ECE: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:217) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x553ECE5: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-process-arg.c:186) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568ECE: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:217) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x553E7A5: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-process-arg.c:208) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568ECE: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:217) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5537859: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:230) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5537873: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:230) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5531C66: __mpn_extract_double (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/ieee754/dbl-64/dbl2mpn.c:56) ==2967384== by 0x5537FAE: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:230) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5537916: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:271) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5537939: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:271) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x553793B: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:271) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x553796B: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:272) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x553798E: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:272) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5537990: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:272) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x55379B9: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:273) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x55379DC: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:273) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x55379DE: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:273) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x55379FC: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:280) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x553848D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:483) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5538C0D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:499) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x553073C: __mpn_lshift (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/lshift.S:59) ==2967384== by 0x5538C11: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:499) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x553073F: __mpn_lshift (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/lshift.S:60) ==2967384== by 0x5538C11: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:499) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5538C2B: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:500) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538C70: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:511) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538D56: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:623) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538D64: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:511) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5530CB8: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:36) ==2967384== by 0x5530AE8: __mpn_mul (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/mul.c:81) ==2967384== by 0x5538E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:524) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5530D43: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:85) ==2967384== by 0x5530AE8: __mpn_mul (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/mul.c:81) ==2967384== by 0x5538E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:524) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5530DB2: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:117) ==2967384== by 0x5530AE8: __mpn_mul (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/mul.c:81) ==2967384== by 0x5538E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:524) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5530AF5: __mpn_mul (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/mul.c:83) ==2967384== by 0x5538E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:524) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5538CFC: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:531) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538D1D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:535) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538D32: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:540) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538D3E: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:562) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538F91: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:575) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5538ECF: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:579) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538ED5: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:579) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5538F00: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:579) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538F14: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:579) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538F1D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:580) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538F34: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:601) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5531979: __mpn_rshift (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:31) ==2967384== by 0x5538F54: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:613) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x55319A0: __mpn_rshift (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:45) ==2967384== by 0x5538F54: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:613) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x55319CA: __mpn_rshift (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:61) ==2967384== by 0x5538F54: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:613) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x55319CC: __mpn_rshift (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:62) ==2967384== by 0x5538F54: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:613) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x55319DD: __mpn_rshift (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:67) ==2967384== by 0x5538F54: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:613) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x55319F1: __mpn_rshift (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:73) ==2967384== by 0x5538F54: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:613) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== ==2967384== More than 100 errors detected. Subsequent errors ==2967384== will still be recorded, but in less detail than before. ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538CB8: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:518) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5530CCE: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:45) ==2967384== by 0x5530AE8: __mpn_mul (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/mul.c:81) ==2967384== by 0x5538E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:524) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5530CD3: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:47) ==2967384== by 0x5530AE8: __mpn_mul (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/mul.c:81) ==2967384== by 0x5538E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:524) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5530DB0: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:115) ==2967384== by 0x5530AE8: __mpn_mul (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/mul.c:81) ==2967384== by 0x5538E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:524) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x553953C: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:580) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5539554: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:590) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538D75: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:625) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5530CB8: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:36) ==2967384== by 0x5538D96: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:629) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5530CCE: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:45) ==2967384== by 0x5538D96: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:629) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5530CD3: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:47) ==2967384== by 0x5538D96: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:629) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5530D43: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:85) ==2967384== by 0x5538D96: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:629) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5530DB0: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:115) ==2967384== by 0x5538D96: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:629) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5530DB2: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:117) ==2967384== by 0x5538D96: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:629) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538DA9: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:631) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5538DC4: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:633) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538DD7: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:634) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5531979: __mpn_rshift (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:31) ==2967384== by 0x5539461: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:642) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x55319A0: __mpn_rshift (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:45) ==2967384== by 0x5539461: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:642) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x55319CA: __mpn_rshift (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:61) ==2967384== by 0x5539461: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:642) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x55319CC: __mpn_rshift (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:62) ==2967384== by 0x5539461: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:642) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x55319DD: __mpn_rshift (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:67) ==2967384== by 0x5539461: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:642) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x55319F1: __mpn_rshift (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:73) ==2967384== by 0x5539461: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:642) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5538E1C: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:645) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538E22: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:645) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5537571: hack_digit (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:95) ==2967384== by 0x5537E2D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:769) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5530CB8: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:36) ==2967384== by 0x5537578: hack_digit (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:96) ==2967384== by 0x5537E2D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:769) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5530CCE: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:45) ==2967384== by 0x5537578: hack_digit (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:96) ==2967384== by 0x5537E2D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:769) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5530CD3: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:47) ==2967384== by 0x5537578: hack_digit (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:96) ==2967384== by 0x5537E2D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:769) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5530CD5: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:48) ==2967384== by 0x5537578: hack_digit (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:96) ==2967384== by 0x5537E2D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:769) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5530CDA: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:51) ==2967384== by 0x5537578: hack_digit (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:96) ==2967384== by 0x5537E2D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:769) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5530CDC: __mpn_mul_1 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:52) ==2967384== by 0x5537578: hack_digit (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:96) ==2967384== by 0x5537E2D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:769) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5537571: hack_digit (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:95) ==2967384== by 0x5537ED4: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:793) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x55380A5: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:805) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5537571: hack_digit (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:95) ==2967384== by 0x55380BD: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:806) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x55380D4: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:808) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538583: UnknownInlinedFun (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/../include/rounding-mode.h:52) ==2967384== by 0x5538583: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:825) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538155: UnknownInlinedFun (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/../include/rounding-mode.h:58) ==2967384== by 0x5538155: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:825) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x55385B7: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:835) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538620: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:842) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538639: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:855) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x55382C2: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:987) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x553885A: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:999) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x484D158: __strlen_sse2 (/builddir/build/BUILD/valgrind-3.24.0/memcheck/../shared/vg_replace_strmem.c:507) ==2967384== by 0x553F5B1: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-process-arg.c:435) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5542C12: __vfprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1544) ==2967384== by 0x56A75D: Rvprintf (svn/R-devel/src/main/printutils.c:985) ==2967384== by 0x56A83B: Rprintf (svn/R-devel/src/main/printutils.c:898) ==2967384== by 0x566E31: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Syscall param write(buf) points to uninitialised byte(s) ==2967384== at 0x55E9304: write (/usr/src/debug/glibc-2.39-37.fc40.x86_64/io/../sysdeps/unix/sysv/linux/write.c:26) ==2967384== by 0x5569EA4: _IO_file_write@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/fileops.c:1181) ==2967384== by 0x556801C: new_do_write (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/fileops.c:449) ==2967384== by 0x5568EB0: _IO_do_write@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/fileops.c:426) ==2967384== by 0x55695DF: _IO_file_sync@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/fileops.c:799) ==2967384== by 0x555C6A4: fflush (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/iofflush.c:40) ==2967384== by 0x56A766: Rvprintf (svn/R-devel/src/main/printutils.c:987) ==2967384== by 0x56A83B: Rprintf (svn/R-devel/src/main/printutils.c:898) ==2967384== by 0x566E31: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== Address 0x102d1101 is 1 bytes inside a block of size 4,096 alloc'd ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x555C0A6: _IO_file_doallocate (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/filedoalloc.c:101) ==2967384== by 0x556B413: _IO_doallocbuf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/genops.c:347) ==2967384== by 0x556B413: _IO_doallocbuf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/genops.c:342) ==2967384== by 0x55694C7: _IO_file_overflow@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/fileops.c:745) ==2967384== by 0x5569FE7: _IO_new_file_xsputn (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/fileops.c:1244) ==2967384== by 0x5569FE7: _IO_file_xsputn@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/fileops.c:1197) ==2967384== by 0x55372C8: __printf_buffer_flush_to_file (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_buffer_to_file.c:59) ==2967384== by 0x553738B: __printf_buffer_to_file_done (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_buffer_to_file.c:120) ==2967384== by 0x5542C1A: __vfprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1545) ==2967384== by 0x56A75D: Rvprintf (svn/R-devel/src/main/printutils.c:985) ==2967384== by 0x56A83B: Rprintf (svn/R-devel/src/main/printutils.c:898) ==2967384== by 0x5DBB23: Rf_PrintGreeting (svn/R-devel/src/main/version.c:33) ==2967384== by 0x52703C: setup_Rmainloop (svn/R-devel/src/main/main.c:1102) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869269A: qrdowndate(Eigen::Matrix const&, Eigen::Matrix const&, int, Rcpp::Nullable, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:715) ==2967384== by 0x186E2513: _fastQR_qrdowndate (packages/tests-vg/fastQR/src/RcppExports.cpp:188) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== 1.776357e-15 > > ## Remove m columns > ## generate sample data > set.seed(10) > n <- 10 > p <- 6 > X <- matrix(rnorm(n * p, 1), n, p) > > ## get the initial QR factorization > output <- fastQR::qr(X, type = "householder", + nb = NULL, + complete = TRUE) > Q <- output$Q > R <- output$R > > ## select the column to be deleted from X > ## and update X > m <- 2 > k <- 2 > X1 <- X[, -c(k,k+m-1)] > > ## downdate the QR decomposition > out <- fastQR::qrdowndate(Q = Q, R = R, + k = k, m = 2, + type = "column", + fast = TRUE, + complete = FALSE) > > ## check > round(out$Q %*% out$R - X1, 5) [,1] [,2] [,3] [,4] [1,] 0 0 0 0 [2,] 0 0 0 0 [3,] 0 0 0 0 [4,] 0 0 0 0 [5,] 0 0 0 0 [6,] 0 0 0 0 [7,] 0 0 0 0 [8,] 0 0 0 0 [9,] 0 0 0 0 [10,] 0 0 0 0 > max(abs(out$Q %*% out$R - X1)) [1] 1.554312e-15 > > ## Remove one row > ## generate sample data > set.seed(10) > n <- 10 > p <- 6 > X <- matrix(rnorm(n * p, 1), n, p) > > ## get the initial QR factorization > output <- fastQR::qr(X, type = "householder", + nb = NULL, + complete = TRUE) > Q <- output$Q > R <- output$R > > ## select the row to be deleted from X and update X > k <- 5 > X1 <- X[-k,] > > ## downdate the QR decomposition > out <- fastQR::qrdowndate(Q = Q, R = R, + k = k, m = 1, + type = "row", + fast = FALSE, + complete = TRUE) > > ## check > round(out$Q %*% out$R - X1, 5) [,1] [,2] [,3] [,4] [,5] [,6] [1,] 0 0 0 0 0 0 [2,] 0 0 0 0 0 0 [3,] 0 0 0 0 0 0 [4,] 0 0 0 0 0 0 [5,] 0 0 0 0 0 0 [6,] 0 0 0 0 0 0 [7,] 0 0 0 0 0 0 [8,] 0 0 0 0 0 0 [9,] 0 0 0 0 0 0 > max(abs(out$Q %*% out$R - X1)) [1] 8.881784e-16 > > ## Remove m rows > ## generate sample data > set.seed(10) > n <- 10 > p <- 6 > X <- matrix(rnorm(n * p, 1), n, p) > > ## get the initial QR factorization > output <- fastQR::qr(X, type = "householder", + nb = NULL, + complete = TRUE) > Q <- output$Q > R <- output$R > > ## select the rows to be deleted from X and update X > k <- 5 > m <- 2 > X1 <- X[-c(k,k+1),] > > ## downdate the QR decomposition > out <- fastQR::qrdowndate(Q = Q, R = R, + k = k, m = m, + type = "row", + fast = FALSE, + complete = TRUE) > > ## check > round(out$Q %*% out$R - X1, 5) [,1] [,2] [,3] [,4] [,5] [,6] [1,] 0 0 0 0 0 0 [2,] 0 0 0 0 0 0 [3,] 0 0 0 0 0 0 [4,] 0 0 0 0 0 0 [5,] 0 0 0 0 0 0 [6,] 0 0 0 0 0 0 [7,] 0 0 0 0 0 0 [8,] 0 0 0 0 0 0 > max(abs(out$Q %*% out$R - X1)) [1] 1.110223e-15 > > > > > cleanEx() > nameEx("qrls") > ### * qrls > > flush(stderr()); flush(stdout()) > > ### Name: qrls > ### Title: Ordinary least squares for the linear regression model > ### Aliases: qrls > > ### ** Examples > > > ## generate sample data > set.seed(10) > n <- 30 > p <- 6 > X <- matrix(rnorm(n * p, 1), n, p) > X[,1] <- 1 > eps <- rnorm(n, sd = 0.5) > beta <- rep(0, p) > beta[1:3] <- 1 > beta[4:5] <- 2 > y <- X %*% beta + eps > X_test <- matrix(rnorm(5 * p, 1), 5, p) > output <- fastQR::qrls(y = y, X = X, X_test = X_test) > output$coeff [1] 1.06512614 0.82369781 1.19009075 1.88240929 1.94475437 0.03956191 > > > > > cleanEx() > nameEx("qrmls") > ### * qrmls > > flush(stderr()); flush(stdout()) > > ### Name: qrmls > ### Title: Ordinary least squares for the linear multivariate regression > ### model > ### Aliases: qrmls > > ### ** Examples > > > ## generate sample data > set.seed(10) > n <- 30 > p <- 6 > q <- 3 > X <- matrix(rnorm(n * p, 1), n, p) > X[,1] <- 1 > eps <- matrix(rnorm(n*q), n, q) > B <- matrix(0, p, q) > B[,1] <- rep(1, p) > B[,2] <- rep(2, p) > B[,3] <- rep(-1, p) > Y <- X %*% B + eps > X_test <- matrix(rnorm(5 * p, 1), 5, p) > output <- fastQR::qrmls(Y = Y, X = X, X_test = X_test, type = "QR") > output$coeff [,1] [,2] [,3] [1,] 1.1302523 2.205290 -0.9226133 [2,] 0.6473956 2.073264 -1.1598150 [3,] 1.3801815 1.814843 -1.1818939 [4,] 0.7648186 1.605316 -0.9589533 [5,] 0.8895087 2.321224 -0.7638567 [6,] 1.0791238 1.885866 -1.0905108 > > > > > cleanEx() > nameEx("qrmridge") > ### * qrmridge > > flush(stderr()); flush(stdout()) > > ### Name: qrmridge > ### Title: RIDGE estimator for the linear multivariate regression model > ### Aliases: qrmridge > > ### ** Examples > > ## generate sample data > set.seed(10) > n <- 30 > p <- 6 > q <- 3 > X <- matrix(rnorm(n * p, 1), n, p) > X[,1] <- 1 > eps <- matrix(rnorm(n*q), n, q) > B <- matrix(0, p, q) > B[,1] <- rep(1, p) > B[,2] <- rep(2, p) > B[,3] <- rep(-1, p) > Y <- X %*% B + eps > X_test <- matrix(rnorm(5 * p, 1), 5, p) > output <- fastQR::qrmridge(Y = Y, X = X, lambda = 1, X_test = X_test, type = "QR") > output$coeff [,1] [,2] [,3] [1,] 0.7833908 1.517798 -0.7651930 [2,] 0.7870141 1.805517 -0.9729437 [3,] 1.0153163 1.671700 -0.9604935 [4,] 0.8549958 1.728845 -0.9251922 [5,] 0.8191982 1.899010 -0.7892670 [6,] 0.7794254 1.615049 -0.8350445 > > > > > cleanEx() > nameEx("qrmridge_cv") > ### * qrmridge_cv > > flush(stderr()); flush(stdout()) > > ### Name: qrmridge_cv > ### Title: Cross-validation of the RIDGE estimator for the linear > ### multivariate regression model > ### Aliases: qrmridge_cv > > ### ** Examples > > ## generate sample data > set.seed(10) > n <- 30 > p <- 6 > q <- 3 > X <- matrix(rnorm(n * p, 1), n, p) > X[,1] <- 1 > eps <- matrix(rnorm(n*q), n, q) > B <- matrix(0, p, q) > B[,1] <- rep(1, p) > B[,2] <- rep(2, p) > B[,3] <- rep(-1, p) > Y <- X %*% B + eps > X_test <- matrix(rnorm(5 * p, 1), 5, p) > output <- fastQR::qrmridge_cv(Y = Y, X = X, lambda = c(1,2), + k = 5, seed = 12, X_test = X_test, type = "QR") Warning in fastQR::qrmridge_cv(Y = Y, X = X, lambda = c(1, 2), k = 5, seed = 12, : When called from R, the RNG seed has to be set at the R level via set.seed() >>> qrridge_cv, processing lambda: 1 >>> qrridge_cv, processing lambda: 2 >>> qrridge_cv, fitting for lambda: 2 >>> qua: 2 >>> qua1: 2 >>> qua2: 2 >>> qua3: 2 >>> qua4: 2 > output$coeff [,1] [,2] [,3] [1,] 0.6738149 1.321745 -0.6733621 [2,] 0.7217771 1.586038 -0.8438102 [3,] 0.8582386 1.488424 -0.8330965 [4,] 0.7888748 1.594032 -0.8409891 [5,] 0.7332374 1.644017 -0.7250824 [6,] 0.6705027 1.405152 -0.7187076 > > > > > cleanEx() > nameEx("qrridge") > ### * qrridge > > flush(stderr()); flush(stdout()) > > ### Name: qrridge > ### Title: RIDGE estimation for the linear regression model > ### Aliases: qrridge > > ### ** Examples > > > ## generate sample data > set.seed(10) > n <- 30 > p <- 6 > X <- matrix(rnorm(n * p, 1), n, p) > X[,1] <- 1 > eps <- rnorm(n, sd = 0.5) > beta <- rep(0, p) > beta[1:3] <- 1 > beta[4:5] <- 2 > y <- X %*% beta + eps > X_test <- matrix(rnorm(5 * p, 1), 5, p) > output <- fastQR::qrridge(y = y, X = X, + lambda = 0.2, + X_test = X_test) > output$coeff [1] 1.0148157 0.8287316 1.2032504 1.7534561 1.7254645 0.2562874 > > > > > cleanEx() > nameEx("qrridge_cv") > ### * qrridge_cv > > flush(stderr()); flush(stdout()) > > ### Name: qrridge_cv > ### Title: Cross-validation of the RIDGE estimator for the linear > ### regression model > ### Aliases: qrridge_cv > > ### ** Examples > > > ## generate sample data > set.seed(10) > n <- 30 > p <- 6 > X <- matrix(rnorm(n * p, 1), n, p) > X[,1] <- 1 > eps <- rnorm(n) > beta <- rep(1, p) > y <- X %*% beta + eps > X_test <- matrix(rnorm(5 * p, 1), 5, p) > output <- fastQR::qrridge_cv(y = y, X = X, lambda = c(1,2), + k = 5, seed = 12, X_test = X_test, type = "QR") >>> qrridge_cv, processing lambda: 1 >>> qrridge_cv, processing lambda: 2 > output$coeff [1] 0.6738149 0.7217771 0.8582386 0.7888748 0.7332374 0.6705027 > > > > > cleanEx() > nameEx("qrsolve") > ### * qrsolve > > flush(stderr()); flush(stdout()) > > ### Name: qrsolve > ### Title: Solution of linear system of equations, via the QR > ### decomposition. > ### Aliases: qrsolve > > ### ** Examples > > > ## generate sample data > set.seed(1234) > n <- 10 > p <- 4 > A <- matrix(rnorm(n * p, 1), n, p) > b <- rnorm(n) > > ## solve the system of linear equations using qr > x1 <- fastQR::qrsolve(A = A, b = b) > x1 [1] -0.4520917 -0.1715973 -0.3094650 0.5688013 > > ## solve the system of linear equations using rb qr > x2 <- fastQR::qrsolve(A = A, b = b, nb = 2) > x2 [1] -0.4520917 -0.1715973 -0.3094650 0.5688013 > > ## check > round(x1 - solve(crossprod(A)) %*% crossprod(A, b), 5) [,1] [1,] 0 [2,] 0 [3,] 0 [4,] 0 > round(x2 - solve(crossprod(A)) %*% crossprod(A, b), 5) [,1] [1,] 0 [2,] 0 [3,] 0 [4,] 0 > > > > > cleanEx() > nameEx("qrupdate") > ### * qrupdate > > flush(stderr()); flush(stdout()) > > ### Name: qrupdate > ### Title: Fast updating of the QR factorization > ### Aliases: qrupdate > > ### ** Examples > > ## Add one column > ## generate sample data > set.seed(1234) > n <- 12 > p <- 5 > X <- matrix(rnorm(n * p, 1), n, p) > > ## get the initial QR factorization > output <- qr(X, complete = TRUE) > Q <- output$Q > R <- output$R > > ## create column u to be added > k <- p+1 > u <- matrix(rnorm(n), n, 1) > X1 <- cbind(X, u) > > ## update the QR decomposition > out <- fastQR::qrupdate(Q = Q, R = R, + k = k, U = u, + type = "column", + fast = FALSE, + complete = TRUE) > > ## check > round(out$Q %*% out$R - X1, 5) [,1] [,2] [,3] [,4] [,5] [,6] [1,] 0 0 0 0 0 0 [2,] 0 0 0 0 0 0 [3,] 0 0 0 0 0 0 [4,] 0 0 0 0 0 0 [5,] 0 0 0 0 0 0 [6,] 0 0 0 0 0 0 [7,] 0 0 0 0 0 0 [8,] 0 0 0 0 0 0 [9,] 0 0 0 0 0 0 [10,] 0 0 0 0 0 0 [11,] 0 0 0 0 0 0 [12,] 0 0 0 0 0 0 > max(abs(out$Q %*% out$R - X1)) [1] 8.881784e-16 > > ## Add m columns > ## create data: n > p > set.seed(1234) > n <- 10 > p <- 5 > X <- matrix(rnorm(n * p, 1), n, p) > > ## get the initial QR factorization > output <- fastQR::qr(X, complete = TRUE) > Q <- output$Q > R <- output$R > > ## create the matrix of two columns to be added > ## in position 2 > k <- 2 > m <- 2 > U <- matrix(rnorm(n*m), n, m) > X1 <- cbind(X[,1:(k-1)], U, X[,k:p]) > > # update the QR decomposition > out <- fastQR::qrupdate(Q = Q, R = R, + k = k, U = U, type = "column", + fast = FALSE, complete = TRUE) > > ## check > round(out$Q %*% out$R - X1, 5) [,1] [,2] [,3] [,4] [,5] [,6] [,7] [1,] 0 0 0 0 0 0 0 [2,] 0 0 0 0 0 0 0 [3,] 0 0 0 0 0 0 0 [4,] 0 0 0 0 0 0 0 [5,] 0 0 0 0 0 0 0 [6,] 0 0 0 0 0 0 0 [7,] 0 0 0 0 0 0 0 [8,] 0 0 0 0 0 0 0 [9,] 0 0 0 0 0 0 0 [10,] 0 0 0 0 0 0 0 > max(abs(out$Q %*% out$R - X1)) [1] 1.776357e-15 > > ## Add one row > ## create data: n > p > set.seed(1234) > n <- 12 > p <- 5 > X <- matrix(rnorm(n * p, 1), n, p) > > ## get the initial QR factorization > output <- fastQR::qr(X, complete = TRUE) > Q <- output$Q > R <- output$R > R1 <- R[1:p,] > > ## create the row u to be added > u <- matrix(data = rnorm(p), p, 1) > k <- n+1 > if (k<=n) { + X1 <- rbind(rbind(X[1:(k-1), ], t(u)), X[k:n, ]) + } else { + X1 <- rbind(rbind(X, t(u))) + } > > ## update the QR decomposition > out <- fastQR::qrupdate(Q = Q, R = R, + k = k, U = u, + type = "row", + complete = TRUE) ==2967384== Invalid read of size 8 ==2967384== at 0x186BC16D: coeff (R-devel/site-library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:911) ==2967384== by 0x186BC16D: assignCoeff (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:654) ==2967384== by 0x186BC16D: assignCoeffByOuterInner (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:668) ==2967384== by 0x186BC16D: Eigen::internal::dense_assignment_loop, -1, -1, false> >, Eigen::internal::evaluator const, -1, -1, false> >, Eigen::internal::assign_op, 0>, 4, 0>::run(Eigen::internal::generic_dense_assignment_kernel, -1, -1, false> >, Eigen::internal::evaluator const, -1, -1, false> >, Eigen::internal::assign_op, 0>&) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:568) ==2967384== by 0x186AEF07: call_dense_assignment_loop, -1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:785) ==2967384== by 0x186AEF07: run (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:954) ==2967384== by 0x186AEF07: call_assignment_no_alias, -1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:890) ==2967384== by 0x186AEF07: call_assignment, -1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:858) ==2967384== by 0x186AEF07: call_assignment, -1, -1, false>, Eigen::Block, -1, -1, false> > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836) ==2967384== by 0x186AEF07: operator=, -1, -1, false> > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Assign.h:66) ==2967384== by 0x186AEF07: qraddrow(Eigen::Matrix const&, Eigen::Matrix const&, int const&, Eigen::Matrix const&) (packages/tests-vg/fastQR/src/QRupdate.cpp:178) ==2967384== by 0x18690E73: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:424) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== Address 0x118facb0 is 0 bytes after a block of size 480 alloc'd ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18690DB8: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18690DB8: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18690DB8: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18690DB8: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18690DB8: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x18690DB8: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:411) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== ==2967384== Invalid read of size 16 ==2967384== at 0x186BC1A2: _mm_loadu_pd (/usr/lib/gcc/x86_64-redhat-linux/14/include/emmintrin.h:134) ==2967384== by 0x186BC1A2: ploadu<__vector(2) double> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:746) ==2967384== by 0x186BC1A2: ploadt<__vector(2) double, 0> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/GenericPacketMath.h:969) ==2967384== by 0x186BC1A2: packet<0, __vector(2) double> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:937) ==2967384== by 0x186BC1A2: assignPacket<16, 0, __vector(2) double> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:675) ==2967384== by 0x186BC1A2: assignPacketByOuterInner<16, 0, __vector(2) double> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:689) ==2967384== by 0x186BC1A2: Eigen::internal::dense_assignment_loop, -1, -1, false> >, Eigen::internal::evaluator const, -1, -1, false> >, Eigen::internal::assign_op, 0>, 4, 0>::run(Eigen::internal::generic_dense_assignment_kernel, -1, -1, false> >, Eigen::internal::evaluator const, -1, -1, false> >, Eigen::internal::assign_op, 0>&) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:572) ==2967384== by 0x186AEF07: call_dense_assignment_loop, -1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:785) ==2967384== by 0x186AEF07: run (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:954) ==2967384== by 0x186AEF07: call_assignment_no_alias, -1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:890) ==2967384== by 0x186AEF07: call_assignment, -1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:858) ==2967384== by 0x186AEF07: call_assignment, -1, -1, false>, Eigen::Block, -1, -1, false> > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836) ==2967384== by 0x186AEF07: operator=, -1, -1, false> > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Assign.h:66) ==2967384== by 0x186AEF07: qraddrow(Eigen::Matrix const&, Eigen::Matrix const&, int const&, Eigen::Matrix const&) (packages/tests-vg/fastQR/src/QRupdate.cpp:178) ==2967384== by 0x18690E73: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:424) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== Address 0x118facb8 is 8 bytes after a block of size 480 alloc'd ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18690DB8: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18690DB8: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18690DB8: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18690DB8: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18690DB8: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x18690DB8: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:411) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== ==2967384== Invalid read of size 8 ==2967384== at 0x186BC200: coeff (R-devel/site-library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:911) ==2967384== by 0x186BC200: assignCoeff (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:654) ==2967384== by 0x186BC200: assignCoeffByOuterInner (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:668) ==2967384== by 0x186BC200: Eigen::internal::dense_assignment_loop, -1, -1, false> >, Eigen::internal::evaluator const, -1, -1, false> >, Eigen::internal::assign_op, 0>, 4, 0>::run(Eigen::internal::generic_dense_assignment_kernel, -1, -1, false> >, Eigen::internal::evaluator const, -1, -1, false> >, Eigen::internal::assign_op, 0>&) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:576) ==2967384== by 0x186AEF07: call_dense_assignment_loop, -1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:785) ==2967384== by 0x186AEF07: run (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:954) ==2967384== by 0x186AEF07: call_assignment_no_alias, -1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:890) ==2967384== by 0x186AEF07: call_assignment, -1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:858) ==2967384== by 0x186AEF07: call_assignment, -1, -1, false>, Eigen::Block, -1, -1, false> > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836) ==2967384== by 0x186AEF07: operator=, -1, -1, false> > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Assign.h:66) ==2967384== by 0x186AEF07: qraddrow(Eigen::Matrix const&, Eigen::Matrix const&, int const&, Eigen::Matrix const&) (packages/tests-vg/fastQR/src/QRupdate.cpp:178) ==2967384== by 0x18690E73: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:424) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== Address 0x118fadc8 is 16 bytes after a block of size 200 alloc'd ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x1869112A: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x1869112A: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x1869112A: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x1869112A: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x1869112A: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1869112A: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:412) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== > > ## check > round(out$Q %*% out$R - X1, 5) ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x43E3DC: mayHaveNaNOrInf (svn/R-devel/src/main/array.c:662) ==2967384== by 0x44320A: matprod (svn/R-devel/src/main/array.c:807) ==2967384== by 0x44320A: do_matprod (svn/R-devel/src/main/array.c:1426) ==2967384== by 0x4F12E9: Rf_eval (svn/R-devel/src/main/eval.c:1264) ==2967384== by 0x4F5E80: Rf_evalList (svn/R-devel/src/main/eval.c:3669) ==2967384== by 0x4F1275: Rf_eval (svn/R-devel/src/main/eval.c:1251) ==2967384== by 0x4F6651: Rf_evalListKeepMissing (svn/R-devel/src/main/eval.c:3743) ==2967384== by 0x43D1C0: do_Math2 (svn/R-devel/src/main/arithmetic.c:1659) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== by 0x52818C: Rf_ReplIteration (svn/R-devel/src/main/main.c:265) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== by 0x528524: run_Rmainloop (svn/R-devel/src/main/main.c:1219) ==2967384== by 0x52856D: Rf_mainloop (svn/R-devel/src/main/main.c:1226) ==2967384== [,1] [,2] [,3] [,4] [,5] [1,] 0 0 0 0 0 [2,] 0 0 0 0 0 [3,] 0 0 0 0 0 [4,] 0 0 0 0 0 [5,] 0 0 0 0 0 [6,] 0 0 0 0 0 [7,] 0 0 0 0 0 [8,] 0 0 0 0 0 [9,] 0 0 0 0 0 [10,] 0 0 0 0 0 [11,] 0 0 0 0 0 [12,] 0 0 0 0 0 [13,] 0 0 0 0 0 > max(abs(out$Q %*% out$R - X1)) [1]==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538E64: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:542) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1868FDB2: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:434) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538E91: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:562) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1868FDB2: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:434) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x5538E97: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:564) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1868FDB2: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:434) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538E9A: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:564) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1868FDB2: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:434) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x5538E9C: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:565) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1868FDB2: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:434) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x55380E1: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:810) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1868FDB2: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:434) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x55380F1: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:818) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1868FDB2: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:434) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Use of uninitialised value of size 8 ==2967384== at 0x55380FA: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:810) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1868FDB2: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:434) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== ==2967384== Conditional jump or move depends on uninitialised value(s) ==2967384== at 0x553810C: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:818) ==2967384== by 0x5539B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/printf_fp.c:1122) ==2967384== by 0x553F071: __printf_fp_spec (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==2967384== by 0x553F071: printf_positional (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==2967384== by 0x5540029: __printf_buffer (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==2967384== by 0x5566452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-37.fc40.x86_64/libio/vsnprintf.c:96) ==2967384== by 0x553CB85: snprintf (/usr/src/debug/glibc-2.39-37.fc40.x86_64/stdio-common/snprintf.c:31) ==2967384== by 0x568EEA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:218) ==2967384== by 0x566E22: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==2967384== by 0x5603C2: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==2967384== by 0x562996: PrintDispatch (svn/R-devel/src/main/print.c:411) ==2967384== by 0x562996: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==2967384== by 0x528214: Rf_ReplIteration (svn/R-devel/src/main/main.c:271) ==2967384== by 0x52848F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==2967384== Uninitialised value was created by a heap allocation ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18686FB5: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18686FB5: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18686FB5: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18686FB5: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18686FB5: Eigen::PlainObjectBase >::resize(long, long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x1868FDB2: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:434) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== 1.110223e-15 > > ## Add m rows > ## create data: n > p > set.seed(1234) > n <- 12 > p <- 5 > X <- matrix(rnorm(n * p, 1), n, p) > > ## get the initial QR factorization > output <- fastQR::qr(X, complete = TRUE) > Q <- output$Q > R <- output$R > R1 <- R[1:p,] > > ## create the matrix of rows U to be added: > ## two rows in position 5 > m <- 2 > U <- matrix(data = rnorm(p*m), p, m) > k <- 5 > if (k<=n) { + X1 <- rbind(rbind(X[1:(k-1), ], t(U)), X[k:n, ]) + } else { + X1 <- rbind(rbind(X, t(U))) + } > > ## update the QR decomposition > out <- fastQR::qrupdate(Q = Q, R = R, + k = k, U = U, + type = "row", + complete = FALSE) ==2967384== Invalid read of size 16 ==2967384== at 0x186BC1A2: _mm_loadu_pd (/usr/lib/gcc/x86_64-redhat-linux/14/include/emmintrin.h:134) ==2967384== by 0x186BC1A2: ploadu<__vector(2) double> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:746) ==2967384== by 0x186BC1A2: ploadt<__vector(2) double, 0> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/GenericPacketMath.h:969) ==2967384== by 0x186BC1A2: packet<0, __vector(2) double> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:937) ==2967384== by 0x186BC1A2: assignPacket<16, 0, __vector(2) double> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:675) ==2967384== by 0x186BC1A2: assignPacketByOuterInner<16, 0, __vector(2) double> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:689) ==2967384== by 0x186BC1A2: Eigen::internal::dense_assignment_loop, -1, -1, false> >, Eigen::internal::evaluator const, -1, -1, false> >, Eigen::internal::assign_op, 0>, 4, 0>::run(Eigen::internal::generic_dense_assignment_kernel, -1, -1, false> >, Eigen::internal::evaluator const, -1, -1, false> >, Eigen::internal::assign_op, 0>&) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:572) ==2967384== by 0x186AFE0F: call_dense_assignment_loop, -1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:785) ==2967384== by 0x186AFE0F: run (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:954) ==2967384== by 0x186AFE0F: call_assignment_no_alias, -1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:890) ==2967384== by 0x186AFE0F: call_assignment, -1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:858) ==2967384== by 0x186AFE0F: call_assignment, -1, -1, false>, Eigen::Block, -1, -1, false> > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836) ==2967384== by 0x186AFE0F: operator=, -1, -1, false> > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Assign.h:66) ==2967384== by 0x186AFE0F: qraddmrows(Eigen::Matrix const&, Eigen::Matrix const&, int const&, Eigen::Matrix const&) (packages/tests-vg/fastQR/src/QRupdate.cpp:247) ==2967384== by 0x1868FA83: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:427) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== Address 0x100c5320 is 0 bytes after a block of size 480 alloc'd ==2967384== at 0x4843866: malloc (/builddir/build/BUILD/valgrind-3.24.0/coregrind/m_replacemalloc/vg_replace_malloc.c:446) ==2967384== by 0x18690DB8: aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:182) ==2967384== by 0x18690DB8: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:241) ==2967384== by 0x18690DB8: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:404) ==2967384== by 0x18690DB8: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:486) ==2967384== by 0x18690DB8: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:285) ==2967384== by 0x18690DB8: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:411) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== by 0x4F1192: Rf_eval (svn/R-devel/src/main/eval.c:1232) ==2967384== ==2967384== Invalid read of size 16 ==2967384== at 0x186BC1A2: _mm_loadu_pd (/usr/lib/gcc/x86_64-redhat-linux/14/include/emmintrin.h:134) ==2967384== by 0x186BC1A2: ploadu<__vector(2) double> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:746) ==2967384== by 0x186BC1A2: ploadt<__vector(2) double, 0> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/GenericPacketMath.h:969) ==2967384== by 0x186BC1A2: packet<0, __vector(2) double> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:937) ==2967384== by 0x186BC1A2: assignPacket<16, 0, __vector(2) double> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:675) ==2967384== by 0x186BC1A2: assignPacketByOuterInner<16, 0, __vector(2) double> (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:689) ==2967384== by 0x186BC1A2: Eigen::internal::dense_assignment_loop, -1, -1, false> >, Eigen::internal::evaluator const, -1, -1, false> >, Eigen::internal::assign_op, 0>, 4, 0>::run(Eigen::internal::generic_dense_assignment_kernel, -1, -1, false> >, Eigen::internal::evaluator const, -1, -1, false> >, Eigen::internal::assign_op, 0>&) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:572) ==2967384== by 0x186AFF9C: call_dense_assignment_loop, -1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:785) ==2967384== by 0x186AFF9C: run (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:954) ==2967384== by 0x186AFF9C: call_assignment_no_alias, -1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:890) ==2967384== by 0x186AFF9C: call_assignment, -1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::internal::assign_op > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:858) ==2967384== by 0x186AFF9C: call_assignment, -1, -1, false>, Eigen::Block, -1, -1, false> > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836) ==2967384== by 0x186AFF9C: operator=, -1, -1, false> > (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Assign.h:66) ==2967384== by 0x186AFF9C: qraddmrows(Eigen::Matrix const&, Eigen::Matrix const&, int const&, Eigen::Matrix const&) (packages/tests-vg/fastQR/src/QRupdate.cpp:251) ==2967384== by 0x1868FA83: qrupdate(Eigen::Matrix const&, Eigen::Matrix const&, int, Eigen::Matrix const&, Rcpp::Nullable, std::allocator > >, Rcpp::Nullable, Rcpp::Nullable) (packages/tests-vg/fastQR/src/QR_wrap.cpp:427) ==2967384== by 0x186E20D1: _fastQR_qrupdate (packages/tests-vg/fastQR/src/RcppExports.cpp:171) ==2967384== by 0x4A6E27: R_doDotCall (svn/R-devel/src/main/dotcode.c:780) ==2967384== by 0x4E0843: bcEval_loop (svn/R-devel/src/main/eval.c:8672) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7505) ==2967384== by 0x4F0AF7: bcEval (svn/R-devel/src/main/eval.c:7490) ==2967384== by 0x4F0E2A: Rf_eval (svn/R-devel/src/main/eval.c:1167) ==2967384== by 0x4F2D9D: R_execClosure (svn/R-devel/src/main/eval.c:2393) ==2967384== by 0x4F3A66: applyClosure_core (svn/R-devel/src/main/eval.c:2306) ==2967384== by 0x4F0F35: Rf_applyClosure (svn/R-devel/src/main/eval.c:2328) ==2967384== by 0x4F0F35: Rf_eval (svn/R-devel/src/main/eval.c:1280) ==2967384== by 0x4F5CEC: do_set (svn/R-devel/src/main/eval.c:3571) ==2967384== Address 0x100c5340 is 32 bytes before a block of size 208 in arena "client" ==2967384== > > ## check > round(out$Q %*% out$R - X1, 5) [,1] [,2] [,3] [,4] [,5] [1,] 0 0 0 0 0 [2,] 0 0 0 0 0 [3,] 0 0 0 0 0 [4,] 0 0 0 0 0 [5,] 0 0 0 0 0 [6,] 0 0 0 0 0 [7,] 0 0 0 0 0 [8,] 0 0 0 0 0 [9,] 0 0 0 0 0 [10,] 0 0 0 0 0 [11,] 0 0 0 0 0 [12,] 0 0 0 0 0 [13,] 0 0 0 0 0 [14,] 0 0 0 0 0 > max(abs(out$Q %*% out$R - X1)) [1] 8.881784e-16 > > > > > cleanEx() > nameEx("rchol") > ### * rchol > > flush(stderr()); flush(stdout()) > > ### Name: rchol > ### Title: Cholesky decomposition via R factorization. > ### Aliases: rchol > > ### ** Examples > > > set.seed(1234) > n <- 10 > p <- 6 > X <- matrix(rnorm(n * p, 1), n, p) > > ## compute the Cholesky decomposition of X^TX > S <- fastQR::rchol(X = X) > S [,1] [,2] [,3] [,4] [,5] [,6] [1,] 3.567812 1.054656 0.1332483 -0.3567279 -0.3091874 1.7914494 [2,] 0.000000 4.113006 0.8462229 0.4916688 1.0126802 0.4575482 [3,] 0.000000 0.000000 2.6465566 0.7310397 1.2786103 1.8388978 [4,] 0.000000 0.000000 0.0000000 2.6154016 1.8276222 -1.7896846 [5,] 0.000000 0.000000 0.0000000 0.0000000 1.0014679 -0.1450367 [6,] 0.000000 0.000000 0.0000000 0.0000000 0.0000000 2.7991210 > > ## check > round(S - chol(crossprod(X)), 5) [,1] [,2] [,3] [,4] [,5] [,6] [1,] 0 0 0 0 0 0 [2,] 0 0 0 0 0 0 [3,] 0 0 0 0 0 0 [4,] 0 0 0 0 0 0 [5,] 0 0 0 0 0 0 [6,] 0 0 0 0 0 0 > > > > > cleanEx() > nameEx("rdowndate") > ### * rdowndate > > flush(stderr()); flush(stdout()) > > ### Name: rdowndate > ### Title: Fast downdating of the R matrix > ### Aliases: rdowndate > > ### ** Examples > > ## Remove one column > ## generate sample data > set.seed(10) > n <- 10 > p <- 6 > X <- matrix(rnorm(n * p, 1), n, p) > > ## get the initial QR factorization > output <- fastQR::qr(X, type = "householder", + nb = NULL, + complete = TRUE) > Q <- output$Q > R <- output$R > R1 <- R[1:p,] > > ## select the column to be deleted from X and update X > k <- 2 > X1 <- X[, -k] > > ## downdate the R decomposition > R2 <- fastQR::rdowndate(R = R1, k = k, + m = 1, type = "column") > > ## check > max(abs(crossprod(R2) - crossprod(X1))) [1] 3.552714e-15 > > ## Remove m columns > ## generate sample data > set.seed(10) > n <- 10 > p <- 6 > X <- matrix(rnorm(n * p, 1), n, p) > > ## get the initial QR factorization > output <- fastQR::qr(X, type = "householder", + nb = NULL, + complete = TRUE) > Q <- output$Q > R <- output$R > R1 <- R[1:p,] > > ## select the column to be deleted from X and update X > k <- 2 > X1 <- X[, -c(k,k+1)] > > ## downdate the R decomposition > R2 <- fastQR::rdowndate(R = R1, k = k, + m = 2, type = "column") > > ## check > max(abs(crossprod(R2) - crossprod(X1))) [1] 5.329071e-15 > > ## Remove one row > ## generate sample data > set.seed(10) > n <- 10 > p <- 6 > X <- matrix(rnorm(n * p, 1), n, p) > > ## get the initial QR factorization > output <- fastQR::qr(X, type = "householder", + nb = NULL, + complete = TRUE) > Q <- output$Q > R <- output$R > R1 <- R[1:p,] > > # select the row to be deleted from X and update X > k <- 5 > X1 <- X[-k,] > U <- as.matrix(X[k,], p, 1) > > ## downdate the R decomposition > R2 <- rdowndate(R = R1, k = k, m = 1, + U = U, fast = FALSE, type = "row") Warning in rdowndate(R = R1, k = k, m = 1, U = U, fast = FALSE, type = "row") : * rdowndate : m has been set equal to the the dimension of the provided matrix U! > > ## check > max(abs(crossprod(R2) - crossprod(X1))) [1] 3.552714e-15 > > ## Remove m rows > ## create data: n > p > set.seed(10) > n <- 10 > p <- 6 > X <- matrix(rnorm(n * p, 1), n, p) > output <- fastQR::qr(X, type = "householder", + nb = NULL, + complete = TRUE) > Q <- output$Q > R <- output$R > R1 <- R[1:p,] > > ## select the rows to be deleted from X and update X > k <- 2 > m <- 2 > X1 <- X[-c(k,k+m-1),] > U <- t(X[k:(k+m-1), ]) > > ## downdate the R decomposition > R2 <- rdowndate(R = R1, k = k, m = m, + U = U, fast = FALSE, type = "row") Warning in rdowndate(R = R1, k = k, m = m, U = U, fast = FALSE, type = "row") : * rdowndate : m has been set equal to the the dimension of the provided matrix U! > > ## check > max(abs(crossprod(R2) - crossprod(X1))) [1] 3.552714e-15 > > > > > cleanEx() > nameEx("rupdate") > ### * rupdate > > flush(stderr()); flush(stdout()) > > ### Name: rupdate > ### Title: Fast updating of the R matrix > ### Aliases: rupdate > > ### ** Examples > > ## Add one column > ## generate sample data > set.seed(1234) > n <- 12 > p <- 5 > X <- matrix(rnorm(n * p, 1), n, p) > > ## get the initial QR factorization > output <- fastQR::qr(X, complete = TRUE) > Q <- output$Q > R <- output$R > R1 <- R[1:p,] > > ## create column to be added > u <- matrix(rnorm(n), n, 1) > X1 <- cbind(X, u) > > ## update the R decomposition > R2 <- fastQR::rupdate(X = X, R = R1, U = u, + fast = FALSE, type = "column") > > ## check > max(abs(crossprod(R2) - crossprod(X1))) [1] 3.552714e-15 > > ## Add m columns > ## generate sample data > set.seed(1234) > n <- 10 > p <- 5 > X <- matrix(rnorm(n * p, 1), n, p) > > ## get the initial QR factorization > output <- fastQR::qr(X, complete = TRUE) > Q <- output$Q > R <- output$R > R1 <- R[1:p,] > > ## create the matrix of columns to be added > m <- 2 > U <- matrix(rnorm(n*m), n, m) > X1 <- cbind(X, U) > > # QR update > R2 <- fastQR::rupdate(X = X, R = R1, U = U, + fast = FALSE, type = "column") > > ## check > max(abs(crossprod(R2) - crossprod(X1))) [1] 3.552714e-15 > > ## Add one row > ## generate sample data > set.seed(1234) > n <- 12 > p <- 5 > X <- matrix(rnorm(n * p, 1), n, p) > > ## get the initial QR factorization > output <- fastQR::qr(X, complete = TRUE) > Q <- output$Q > R <- output$R > R1 <- R[1:p,] > > ## create the row u to be added > u <- matrix(data = rnorm(p), p, 1) > k <- 5 > if (k<=n) { + X1 <- rbind(rbind(X[1:(k-1), ], t(u)), X[k:n, ]) + } else { + X1 <- rbind(rbind(X, t(u))) + } > > ## update the R decomposition > R2 <- fastQR::rupdate(R = R1, X = X, + U = u, + type = "row") > > ## check > max(abs(crossprod(R2) - crossprod(X1))) [1] 7.105427e-15 > > ## Add m rows > ## generate sample data > set.seed(1234) > n <- 12 > p <- 5 > X <- matrix(rnorm(n * p, 1), n, p) > > ## get the initial QR factorization > output <- fastQR::qr(X, complete = TRUE) > Q <- output$Q > R <- output$R > R1 <- R[1:p,] > > ## create the matrix of rows to be added > m <- 2 > U <- matrix(data = rnorm(p*m), p, m) > k <- 5 > if (k<=n) { + X1 <- rbind(rbind(X[1:(k-1), ], t(U)), X[k:n, ]) + } else { + X1 <- rbind(rbind(X, t(U))) + } > > ## update the R decomposition > R2 <- fastQR::rupdate(R = R1, X = X, + U = U, + fast = FALSE, + type = "row") > > ## check > max(abs(crossprod(R2) - crossprod(X1))) [1] 7.105427e-15 > > > > > ### *