Note: the module "R" cannot be unloaded because it was not loaded. WARNING: ignoring environment value of R_HOME R Under development (unstable) (2025-03-25 r88054) -- "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. 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. > cargs <- commandArgs(trailingOnly=TRUE) > if(length(cargs)==0){ + ## before running interactively, make sure to start emacs/R with + ## environment defined in /scratch/...check_one.sh, particularly + ## R_LIBS_USER=/tmp/... otherwise we get error when installing + ## data.table. + base <- "/scratch/th798/data.table-revdeps/*" + cargs <- c( + Sys.glob(file.path(base,"deps.csv")), + "349", + Sys.glob(file.path(base, "data.table_release_*tar.gz")), + Sys.glob(file.path(base, "data.table_master_*tar.gz")) + ) + } > names(cargs) <- c("deps.csv", "task.str", "release", "master") > dput(cargs) c(deps.csv = "/scratch/th798/data.table-revdeps/2025-03-26/deps.csv", task.str = "1314", release = "/scratch/th798/data.table-revdeps/2025-03-26/data.table_release_1.17.0.tar.gz", master = "/scratch/th798/data.table-revdeps/2025-03-26/data.table_master_1.17.99.77b43940971091a63baeccf65ec3b2d729dc3a57.tar.gz" ) > (task.dir <- dirname(.libPaths()[1]))#should be /tmp/th798/slurmid/R-vers [1] "/tmp/th798/16121111/R-devel/1314" > if(requireNamespace("R.cache"))R.cache::getCachePath() Loading required namespace: R.cache [1] "/tmp/th798/16121111/R-devel/1314/R.cache" > task.id <- as.integer(cargs[["task.str"]]) > deps.df <- read.csv(cargs[["deps.csv"]]) > (rev.dep <- deps.df$Package[task.id]) [1] "SHAPforxgboost" > job.dir <- file.path(dirname(cargs[["deps.csv"]]), "tasks", task.id) > setwd(task.dir) > .libPaths() [1] "/tmp/th798/16121111/R-devel/1314/library" [2] "/projects/genomic-ml/R/R-devel/library" > options(repos=c(#this should be in ~/.Rprofile too. + CRAN="http://cloud.r-project.org")) > print(Sys.time()) [1] "2025-03-26 01:41:57 MST" > install.time <- system.time({ + install.packages(rev.dep, dep=TRUE) + }) Installing package into '/tmp/th798/16121111/R-devel/1314/library' (as 'lib' is unspecified) also installing the dependency 'lightgbm' trying URL 'http://cloud.r-project.org/src/contrib/lightgbm_4.6.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/SHAPforxgboost_0.1.3.tar.gz' * installing *source* package 'lightgbm' ... ** this is package 'lightgbm' version '4.6.0' ** package 'lightgbm' successfully unpacked and MD5 sums checked ** using staged installation checking location of R... /home/th798/R/R-devel checking whether MM_PREFETCH works... yes checking whether MM_MALLOC works... yes configure: creating ./config.status config.status: creating src/Makevars ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' using C++17 /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c boosting/boosting.cpp -o boosting/boosting.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c boosting/gbdt.cpp -o boosting/gbdt.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c boosting/gbdt_model_text.cpp -o boosting/gbdt_model_text.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c boosting/gbdt_prediction.cpp -o boosting/gbdt_prediction.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c boosting/prediction_early_stop.cpp -o boosting/prediction_early_stop.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c boosting/sample_strategy.cpp -o boosting/sample_strategy.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/bin.cpp -o io/bin.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/config.cpp -o io/config.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/config_auto.cpp -o io/config_auto.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/dataset.cpp -o io/dataset.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/dataset_loader.cpp -o io/dataset_loader.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/file_io.cpp -o io/file_io.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/json11.cpp -o io/json11.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/metadata.cpp -o io/metadata.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/parser.cpp -o io/parser.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/train_share_states.cpp -o io/train_share_states.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/tree.cpp -o io/tree.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c metric/dcg_calculator.cpp -o metric/dcg_calculator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c metric/metric.cpp -o metric/metric.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c objective/objective_function.cpp -o objective/objective_function.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c network/linker_topo.cpp -o network/linker_topo.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c network/linkers_mpi.cpp -o network/linkers_mpi.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c network/linkers_socket.cpp -o network/linkers_socket.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c network/network.cpp -o network/network.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/data_parallel_tree_learner.cpp -o treelearner/data_parallel_tree_learner.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/feature_histogram.cpp -o treelearner/feature_histogram.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/feature_parallel_tree_learner.cpp -o treelearner/feature_parallel_tree_learner.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/gpu_tree_learner.cpp -o treelearner/gpu_tree_learner.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/gradient_discretizer.cpp -o treelearner/gradient_discretizer.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/linear_tree_learner.cpp -o treelearner/linear_tree_learner.o In file included from ./include/Eigen/Core:205, from ./include/Eigen/Dense:1, from treelearner/linear_tree_learner.cpp:7: ./include/Eigen/src/Core/arch/SSE/PacketMath.h:46:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 46 | typedef eigen_packet_wrapper<__m128i, 0> Packet4i; | ^ ./include/Eigen/src/Core/arch/SSE/PacketMath.h:47:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 47 | typedef eigen_packet_wrapper<__m128i, 1> Packet16b; | ^ ./include/Eigen/src/Core/arch/SSE/PacketMath.h:49:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes] 49 | template<> struct is_arithmetic<__m128> { enum { value = true }; }; | ^ ./include/Eigen/src/Core/arch/SSE/PacketMath.h:50:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 50 | template<> struct is_arithmetic<__m128i> { enum { value = true }; }; | ^ ./include/Eigen/src/Core/arch/SSE/PacketMath.h:51:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes] 51 | template<> struct is_arithmetic<__m128d> { enum { value = true }; }; | ^ ./include/Eigen/src/Core/arch/SSE/PacketMath.h:222:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 222 | template<> struct unpacket_traits { | ^ ./include/Eigen/src/Core/arch/SSE/PacketMath.h:228:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 228 | template<> struct unpacket_traits { | ^ ./include/Eigen/src/Core/arch/SSE/PacketMath.h:1124:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 1124 | ptranspose(PacketBlock& kernel) { | ^ ./include/Eigen/src/Core/arch/SSE/PacketMath.h:1129:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 1129 | ptranspose(PacketBlock& kernel) { | ^ In file included from ./include/Eigen/Core:174: ./include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ ./include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ ./include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ ./include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ ./include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from ./include/Eigen/Core:165: ./include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ./include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' ./include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' ./include/Eigen/src/Geometry/arch/Geometry_SIMD.h:24:46: required from here ./include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes] ./include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ In file included from ./include/Eigen/Core:271: ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ./include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ./include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ./include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' ./include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' ./include/Eigen/src/Geometry/arch/Geometry_SIMD.h:27:3: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ./include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' ./include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' ./include/Eigen/src/Geometry/arch/Geometry_SIMD.h:98:47: required from here ./include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ./include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ./include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ./include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' ./include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' ./include/Eigen/src/Geometry/arch/Geometry_SIMD.h:102:3: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ./include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' ./include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ./include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' treelearner/linear_tree_learner.cpp:347:17: required from here ./include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ./include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ./include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' treelearner/linear_tree_learner.cpp:347:17: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >' ./include/Eigen/src/Core/Inverse.h:68:7: required from 'class Eigen::InverseImpl >, Eigen::SolverStorage>' ./include/Eigen/src/Core/Inverse.h:43:7: required from 'class Eigen::Inverse > >' treelearner/linear_tree_learner.cpp:356:61: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Inverse > > >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Inverse > > > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Inverse > > > >' ./include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Inverse > >, Eigen::Dense>' ./include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Inverse > > >' treelearner/linear_tree_learner.cpp:356:65: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Inverse > > >, Eigen::Matrix, 0>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Inverse > > >, Eigen::Matrix, 0> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Inverse > > >, Eigen::Matrix, 0> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, const Eigen::Inverse > > >, Eigen::Matrix, 0, 8>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, const Eigen::Inverse > > >, Eigen::Matrix, 0, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>' treelearner/linear_tree_learner.cpp:356:63: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' ./include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>' ./include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >' ./include/Eigen/src/LU/FullPivLU.h:495:28: required from 'void Eigen::FullPivLU::computeInPlace() [with _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >' ./include/Eigen/src/Core/VectorwiseOp.h:56:7: required from 'class Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 0>' ./include/Eigen/src/LU/FullPivLU.h:495:44: required from 'void Eigen::FullPivLU::computeInPlace() [with _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false> > >' ./include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false> >' ./include/Eigen/src/LU/FullPivLU.h:520:35: required from 'void Eigen::FullPivLU::computeInPlace() [with _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, false> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 1, -1, false>, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0, 5>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ./include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ./include/Eigen/src/Core/Matrix.h:178:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ./include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ./include/Eigen/src/Core/SelfCwiseBinaryOp.h:41:67: required from 'Derived& Eigen::DenseBase::operator/=(const Scalar&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double]' ./include/Eigen/src/LU/FullPivLU.h:559:34: required from 'void Eigen::FullPivLU::computeInPlace() [with _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] In file included from ./include/Eigen/Core:277: ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >' ./include/Eigen/src/Core/CoreEvaluators.h:564:45: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, -1, -1, false> >, Eigen::internal::IndexBased, double>' ./include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, -1, false> > >' ./include/Eigen/src/Core/Visitor.h:79:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, -1, -1, false> > >' ./include/Eigen/src/Core/Visitor.h:123:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, const Eigen::Block, -1, -1, false> >, 0>; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false> >]' ./include/Eigen/src/Core/Visitor.h:348:14: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Inverse > > >, const Eigen::Block, -1, 1, true>, 0>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Inverse > > >, const Eigen::Block, -1, 1, true>, 0> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Inverse > > >, const Eigen::Block, -1, 1, true>, 0> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, const Eigen::Inverse > > >, const Eigen::Block, -1, 1, true>, 0, 7>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, const Eigen::Inverse > > >, const Eigen::Block, -1, 1, true>, 0, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::Inverse > > >, const Eigen::Block, -1, 1, true>, 0>' ./include/Eigen/src/Core/ProductEvaluators.h:345:45: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>' ./include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>' ./include/Eigen/src/Core/Block.h:154:7: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, true> >' ./include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval, -1, 1, true>, Eigen::Dense>' ./include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, const Eigen::Inverse > > >, const Eigen::Block, -1, 1, true>, Eigen::DenseShape, Eigen::DenseShape, 7>' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:479:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Matrix, 0>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Matrix, 0> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Matrix, 0> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Matrix, 0, 7>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Matrix, 0, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Matrix, 0>' ./include/Eigen/src/Core/ProductEvaluators.h:345:45: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Inverse > > >, 1, -1, false>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Inverse > > >, 1, -1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Inverse > > >, 1, -1, false> >' ./include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Inverse > > >, 1, -1, false, false>' ./include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Inverse > > >, 1, -1, false, Eigen::Dense>' ./include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Inverse > > >, 1, -1, false>' ./include/Eigen/src/Core/Product.h:113:15: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Inverse > > >, 1, -1, false> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, const Eigen::Inverse > > >, 1, -1, false> >' ./include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:486:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, Eigen::Matrix, 1>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >, Eigen::Matrix, 1> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >, Eigen::Matrix, 1> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base > >, Eigen::Matrix, 1, 8>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl > >, Eigen::Matrix, 1, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product > >, Eigen::Matrix, 1>' ./include/Eigen/src/Core/ProductEvaluators.h:469:72: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' ./include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >' ./include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Product > >, Eigen::Matrix, 1> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Product > >, Eigen::Matrix, 1>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Product > >, Eigen::Matrix, 1> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Product > >, Eigen::Matrix, 1> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Product > >, Eigen::Matrix, 1> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Product > >, Eigen::Matrix, 1>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Product > >, Eigen::Matrix, 1> >' ./include/Eigen/src/Core/ProductEvaluators.h:469:55: required from 'static void Eigen::internal::generic_product_impl::eval_dynamic_impl(Dst&, const LhsT&, const RhsT&, const Func&, const Scalar&, Eigen::internal::true_type) [with Dst = Eigen::Matrix; LhsT = Eigen::Inverse > >; RhsT = Eigen::Matrix; Func = Eigen::internal::assign_op; Scalar = double; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:446:22: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ./include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ./include/Eigen/src/Core/CwiseNullaryOp.h:347:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/CwiseNullaryOp.h:548:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:444:18: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, true>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, true>, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, true> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, true>, 0>' ./include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true>, -1, 1, true, true>' ./include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >' ./include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true, false>' ./include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true, Eigen::Dense>' ./include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true>' ./include/Eigen/src/Core/ProductEvaluators.h:380:43: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ./include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ./include/Eigen/src/Core/Matrix.h:178:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >': ./include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, 1, -1, false>; Functor = swap_assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, 1, -1, false>; Func = swap_assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ./include/Eigen/src/Core/DenseBase.h:424:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >': ./include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>; SrcXprType = Eigen::Block, -1, 1, true>; Functor = swap_assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>; SrcXprType = Eigen::Block, -1, 1, true>; Functor = Eigen::internal::swap_assign_op; Weak = void]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, true>; Src = Eigen::Block, -1, 1, true>; Func = swap_assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, true>; Src = Eigen::Block, -1, 1, true>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ./include/Eigen/src/Core/DenseBase.h:424:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >': ./include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = div_assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = Eigen::internal::div_assign_op; Weak = void]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ./include/Eigen/src/Core/SelfCwiseBinaryOp.h:41:28: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >': ./include/Eigen/src/Core/ProductEvaluators.h:274:18: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]' ./include/Eigen/src/Core/ProductEvaluators.h:329:41: required from 'static void Eigen::internal::generic_product_impl::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 1, -1, false>, 1, -1, false>]' ./include/Eigen/src/Core/ProductEvaluators.h:178:42: required from 'static void Eigen::internal::Assignment, Eigen::internal::sub_assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::sub_assign_op&) [with DstXprType = Eigen::Block, -1, -1, false>; Lhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 1, -1, false>, 1, -1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Product, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>; Func = sub_assign_op]' ./include/Eigen/src/Core/NoAlias.h:59:31: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' ./include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >' ./include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >' ./include/Eigen/src/Core/ProductEvaluators.h:280:48: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]' ./include/Eigen/src/Core/ProductEvaluators.h:329:41: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] In file included from ./include/Eigen/Core:333: ./include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'class Eigen::internal::gemv_traits': ./include/Eigen/src/Core/products/GeneralMatrixVector.h:87:38: required from 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>' ./include/Eigen/src/Core/GeneralProduct.h:253:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Matrix; Rhs = Eigen::Block, -1, 1, true>; Dest = Eigen::Block, -1, 1, true>; typename Dest::Scalar = double]' ./include/Eigen/src/Core/ProductEvaluators.h:388:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, true>; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = const Eigen::Block, -1, 1, true>; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:479:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 51 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 52 | unpacket_traits<_RhsPacket>::vectorizable && | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 54 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 55 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 56 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1 | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 59 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 60 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 61 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'class Eigen::internal::gemv_traits': ./include/Eigen/src/Core/products/GeneralMatrixVector.h:91:42: required from 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>' ./include/Eigen/src/Core/GeneralProduct.h:253:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Matrix; Rhs = Eigen::Block, -1, 1, true>; Dest = Eigen::Block, -1, 1, true>; typename Dest::Scalar = double]' ./include/Eigen/src/Core/ProductEvaluators.h:388:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, true>; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = const Eigen::Block, -1, 1, true>; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:479:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 51 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 52 | unpacket_traits<_RhsPacket>::vectorizable && | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 54 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 55 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 56 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1 | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 59 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 60 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 61 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'class Eigen::internal::gemv_traits': ./include/Eigen/src/Core/products/GeneralMatrixVector.h:95:45: required from 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>' ./include/Eigen/src/Core/GeneralProduct.h:253:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Matrix; Rhs = Eigen::Block, -1, 1, true>; Dest = Eigen::Block, -1, 1, true>; typename Dest::Scalar = double]' ./include/Eigen/src/Core/ProductEvaluators.h:388:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, true>; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = const Eigen::Block, -1, 1, true>; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:479:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 51 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 52 | unpacket_traits<_RhsPacket>::vectorizable && | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 54 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 55 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 56 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1 | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 59 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 60 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 61 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, Eigen::Stride<0, 0> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, Eigen::Stride<0, 0> > >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, Eigen::Stride<0, 0> >, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> >, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >' ./include/Eigen/src/Core/GeneralProduct.h:296:40: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Matrix; Rhs = Eigen::Block, -1, 1, true>; Dest = Eigen::Block, -1, 1, true>; typename Dest::Scalar = double]' ./include/Eigen/src/Core/ProductEvaluators.h:388:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >' ./include/Eigen/src/Core/GeneralProduct.h:207:26: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >' ./include/Eigen/src/Core/GeneralProduct.h:207:43: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Inverse > > >, 1, -1, false> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Inverse > > >, 1, -1, false> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Inverse > > >, 1, -1, false> > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >' ./include/Eigen/src/Core/Dot.h:50:23: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, const Eigen::Inverse > > >, 1, -1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, true>; ResScalar = double]' ./include/Eigen/src/Core/Dot.h:84:58: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true> >' ./include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, const Eigen::Inverse > > >, 1, -1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, true>; ResScalar = double]' ./include/Eigen/src/Core/Dot.h:84:58: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true>, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >' ./include/Eigen/src/Core/Dot.h:50:23: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true>; U = Eigen::Block, -1, 1, true>; ResScalar = double]' ./include/Eigen/src/Core/Dot.h:84:58: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, 1, true> >' ./include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true>; U = Eigen::Block, -1, 1, true>; ResScalar = double]' ./include/Eigen/src/Core/Dot.h:84:58: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, -1, 1, true>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, -1, 1, true>, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, -1, 1, true>, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >, -1, 1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >, -1, 1, true> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false> >, -1, 1, true>, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] In file included from ./include/Eigen/Core:330: ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits': ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:147:40: required from 'void Eigen::internal::evaluateProductBlockingSizesHeuristic(Index&, Index&, Index&, Index) [with LhsScalar = double; RhsScalar = double; int KcFactor = 1; Index = long int]' ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:342:81: required from 'void Eigen::internal::computeProductBlockingSizes(Index&, Index&, Index&, Index) [with LhsScalar = double; RhsScalar = double; int KcFactor = 1; Index = long int]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:355:66: required from 'Eigen::internal::gemm_blocking_space::gemm_blocking_space(Eigen::Index, Eigen::Index, Eigen::Index, Eigen::Index, bool) [with int StorageOrder = 0; _LhsScalar = double; _RhsScalar = double; int MaxRows = -1; int MaxCols = -1; int MaxDepth = -1; int KcFactor = 1; Eigen::Index = long int]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:507:18: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 433 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 434 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 435 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 460 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 461 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 462 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 465 | typedef QuadPacket RhsPacketx4; | ^~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits': ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1080:42: required from 'struct Eigen::internal::gebp_kernel, 4, 4, false, false>' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:82:107: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:230:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]' ./include/Eigen/src/Core/products/Parallelizer.h:114:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long int]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:509:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 433 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 434 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 435 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 460 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 461 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 462 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 465 | typedef QuadPacket RhsPacketx4; | ^~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits': ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1085:45: required from 'struct Eigen::internal::gebp_kernel, 4, 4, false, false>' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:82:107: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:230:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]' ./include/Eigen/src/Core/products/Parallelizer.h:114:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long int]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:509:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 433 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 434 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 435 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 460 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 461 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 462 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 465 | typedef QuadPacket RhsPacketx4; | ^~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, -1, 1, true>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, -1, 1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, -1, 1, true> >' ./include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, -1, 1, true, false>' ./include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, -1, 1, true, Eigen::Dense>' ./include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, -1, 1, true>' ./include/Eigen/src/Core/PartialReduxEvaluator.h:183:72: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_lhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long int; DataMapper = Eigen::internal::const_blas_data_mapper; int Pack1 = 4; int Pack2 = 2; Packet = __vector(2) double; bool Conjugate = false; bool PanelMode = false]': ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:184:17: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:230:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]' ./include/Eigen/src/Core/products/Parallelizer.h:114:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long int]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:509:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2100:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2100 | typedef typename unpacket_traits::half>::half QuarterPacket; | ^~~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2102:56: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2102 | HalfPacketSize = unpacket_traits::size, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2103:62: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2103 | QuarterPacketSize = unpacket_traits::size, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2103:62: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long int; DataMapper = Eigen::internal::const_blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = false]': ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:195:21: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:230:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]' ./include/Eigen/src/Core/products/Parallelizer.h:114:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long int]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:509:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2459:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 2459 | PacketBlock kernel; | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gebp_kernel::operator()(const DataMapper&, const LhsScalar*, const RhsScalar*, Index, Index, Index, ResScalar, Index, Index, Index, Index) [with LhsScalar = double; RhsScalar = double; Index = long int; DataMapper = Eigen::internal::blas_data_mapper; int mr = 4; int nr = 4; bool ConjugateLhs = false; bool ConjugateRhs = false; ResScalar = double]': ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:198:15: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:230:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]' ./include/Eigen/src/Core/products/Parallelizer.h:114:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long int]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:509:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1920:103: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1920 | const int SResPacketHalfSize = unpacket_traits::half>::size; | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1921:138: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1921 | const int SResPacketQuarterSize = unpacket_traits::half>::half>::size; | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1921:138: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1977:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1977 | typedef typename conditional=8,typename unpacket_traits::half,SResPacket>::type SResPacketHalf; | ^~~~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1978:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1978 | typedef typename conditional=8,typename unpacket_traits::half,SLhsPacket>::type SLhsPacketHalf; | ^~~~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1979:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1979 | typedef typename conditional=8,typename unpacket_traits::half,SRhsPacket>::type SRhsPacketHalf; | ^~~~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1980:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1980 | typedef typename conditional=8,typename unpacket_traits::half,SAccPacket>::type SAccPacketHalf; | ^~~~~~~~~~~~~~ ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, true> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, true> >' ./include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ./include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true> > >' ./include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true> > >' ./include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ./include/Eigen/src/Core/Redux.h:463:25: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >' ./include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >, Eigen::internal::IndexBased, double>' ./include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> > >' ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> > >' ./include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ./include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ./include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ./include/Eigen/src/LU/FullPivLU.h:855:60: required from 'static void Eigen::internal::Assignment >, Eigen::internal::assign_op::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; MatrixType = Eigen::Matrix; SrcXprType = Eigen::Inverse > >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse > >; Func = assign_op]' ./include/Eigen/src/Core/PlainObjectBase.h:797:41: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >' ./include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl >, Eigen::CwiseNullaryOp, Eigen::Matrix >, Eigen::Dense>' ./include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >' ./include/Eigen/src/LU/FullPivLU.h:855:39: required from 'static void Eigen::internal::Assignment >, Eigen::internal::assign_op::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; MatrixType = Eigen::Matrix; SrcXprType = Eigen::Inverse > >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, -1, 1, true> >': ./include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >' ./include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' ./include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' ./include/Eigen/src/Core/VectorwiseOp.h:114:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double; Scalar = double]' ./include/Eigen/src/Core/PartialReduxEvaluator.h:183:21: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long int]' ./include/Eigen/src/Core/PartialReduxEvaluator.h:177:17: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>' ./include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>' ./include/Eigen/src/Core/Block.h:154:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, false> >' ./include/Eigen/src/Core/ProductEvaluators.h:606:37: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >' ./include/Eigen/src/Core/ProductEvaluators.h:606:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Inverse > >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Inverse > >; CoeffReturnType = double; Eigen::Index = long int]' ./include/Eigen/src/Core/CoreEvaluators.h:769:69: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >': ./include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Functor = sub_assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ./include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, -1, -1, false>, -1, 1, true>]' ./include/Eigen/src/Core/ProductEvaluators.h:305:153: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; Eigen::Index = long int]': ./include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >; Scalar = double]' ./include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' ./include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' ./include/Eigen/src/Core/VectorwiseOp.h:114:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double; Scalar = double]' ./include/Eigen/src/Core/PartialReduxEvaluator.h:183:21: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long int]' ./include/Eigen/src/Core/PartialReduxEvaluator.h:177:17: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> >' ./include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, 1, -1, false> >, Eigen::internal::IndexBased, double>' ./include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> > >' ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> > >' ./include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ./include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2, 8>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2>' ./include/Eigen/src/LU/FullPivLU.h:769:22: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>' ./include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>' ./include/Eigen/src/Core/Block.h:154:7: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::Block, -1, -1, false>, 0>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::Block, -1, -1, false>, 0> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::Block, -1, -1, false>, 0> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::Block, -1, -1, false>, 0, 8>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::Block, -1, -1, false>, 0>' ./include/Eigen/src/LU/FullPivLU.h:776:59: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ./include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ./include/Eigen/src/Core/CwiseNullaryOp.h:347:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Block, 1, -1, false>; Scalar = double]' ./include/Eigen/src/Core/CwiseNullaryOp.h:548:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Block, 1, -1, false>]' ./include/Eigen/src/LU/FullPivLU.h:787:55: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long int; DataMapper = Eigen::internal::blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = true]': ./include/Eigen/src/Core/products/TriangularSolverMatrix.h:155:19: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long int; int Mode = 5; bool Conjugate = false; int TriStorageOrder = 0; int OtherInnerStride = 1]' ./include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; int Side = 1; int Mode = 5]' ./include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 5]' ./include/Eigen/src/Core/TriangularMatrix.h:522:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 5]' ./include/Eigen/src/LU/FullPivLU.h:774:20: required from 'void Eigen::FullPivLU::_solve_impl(const RhsType&, DstType&) const [with RhsType = Eigen::CwiseNullaryOp, Eigen::Matrix >; DstType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/Core/Solve.h:147:26: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2459:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 2459 | PacketBlock kernel; | ^~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 1, -1, false>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix >, 1, -1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix >, 1, -1, false> >' ./include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, Eigen::Matrix >, 1, -1, false, false>' ./include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, Eigen::Matrix >, 1, -1, false, Eigen::Dense>' ./include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, Eigen::Matrix >, 1, -1, false>' ./include/Eigen/src/Core/ProductEvaluators.h:1050:11: [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, const Eigen::Block, -1, -1, false>, -1, 1, true>, 0>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, const Eigen::Block, -1, -1, false>, -1, 1, true>, 0> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, const Eigen::Block, -1, -1, false>, -1, 1, true>, 0> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, const Eigen::Block, -1, -1, false>, -1, 1, true>, 0, 7>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, const Eigen::Block, -1, -1, false>, -1, 1, true>, 0, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, const Eigen::Block, -1, -1, false>, -1, 1, true>, 0>' ./include/Eigen/src/Core/ProductEvaluators.h:345:45: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>' ./include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true, true>' ./include/Eigen/src/Core/Block.h:154:7: [ skipping 30 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >': ./include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, const Eigen::Block, -1, -1, false>, -1, 1, true>, Eigen::DenseShape, Eigen::DenseShape, 7>' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:479:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, Eigen::Block, -1, -1, false>, 0>]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >' ./include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, 1, true>, Eigen::Dense>' ./include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, const Eigen::Block, -1, -1, false>, -1, 1, true>, Eigen::DenseShape, Eigen::DenseShape, 7>' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:479:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, Eigen::Block, -1, -1, false>, 0>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false>, Eigen::Block, -1, -1, false>, 0> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false>, Eigen::Block, -1, -1, false>, 0> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 1, -1, false>, Eigen::Block, -1, -1, false>, 0, 7>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 1, -1, false>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 1, -1, false>, Eigen::Block, -1, -1, false>, 0>' ./include/Eigen/src/Core/ProductEvaluators.h:345:45: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 0>' ./include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, 1, -1, false, true>' ./include/Eigen/src/Core/Block.h:154:7: [ skipping 30 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >' ./include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, 1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, 1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:486:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::Block, -1, -1, false>, 1>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::Block, -1, -1, false>, 1> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::Block, -1, -1, false>, 1> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::Block, -1, -1, false>, 1, 8>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::Block, -1, -1, false>, 1, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::Block, -1, -1, false>, 1>' ./include/Eigen/src/Core/ProductEvaluators.h:462:68: [ skipping 26 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, true>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, true>, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, true> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, -1, 1, true>, 0>' ./include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true>, -1, 1, true, true>' ./include/Eigen/src/Core/Block.h:154:7: [ skipping 28 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1, -1, true>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1, -1, true>, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false>, 1, -1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false>, 1, -1, true> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 1, -1, true>, 0>' ./include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, 1, -1, false>, 1, -1, true, true>' ./include/Eigen/src/Core/Block.h:154:7: [ skipping 28 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >' ./include/Eigen/src/Core/GeneralProduct.h:207:26: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false> >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false> >, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, 1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, 1, -1, false> >' ./include/Eigen/src/Core/GeneralProduct.h:207:43: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true> >' ./include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, -1, false>, 1, -1, false>; U = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true>; ResScalar = double]' ./include/Eigen/src/Core/Dot.h:84:58: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1, -1, true> >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1, -1, true> >, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false>, 1, -1, true> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false>, 1, -1, true> > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, 1, -1, false>, 1, -1, true>, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, 1, -1, false>, 1, -1, true> >' ./include/Eigen/src/Core/Dot.h:50:23: [ skipping 28 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, 1, true> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, 1, true> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, 1, true> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, 1, true> >' ./include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, -1, false>, 1, -1, false>, 1, -1, true>; U = Eigen::Block, -1, -1, false>, -1, 1, true>; ResScalar = double]' ./include/Eigen/src/Core/Dot.h:84:58: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, Eigen::Matrix >, 1, -1, false> >': ./include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Functor = assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Functor = Eigen::internal::assign_op; Weak = void]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Func = assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ./include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>]' ./include/Eigen/src/Core/Assign.h:66:28: [ skipping 25 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, true> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, true> >' ./include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ./include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true> > >' ./include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true> > >' ./include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ./include/Eigen/src/Core/Redux.h:463:25: [ skipping 29 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false>, 1, -1, true> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false>, 1, -1, true> >' ./include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, 1, -1, false>, 1, -1, true> >, Eigen::internal::IndexBased, double>' ./include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false>, 1, -1, true> > >' ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false>, 1, -1, true> > >' ./include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ./include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 32 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true> >' ./include/Eigen/src/Core/ProductEvaluators.h:606:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, -1, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, -1, -1, false>; CoeffReturnType = double; Eigen::Index = long int]' ./include/Eigen/src/Core/AssignEvaluator.h:654:63: [ skipping 30 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/serial_tree_learner.cpp -o treelearner/serial_tree_learner.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/tree_learner.cpp -o treelearner/tree_learner.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/voting_parallel_tree_learner.cpp -o treelearner/voting_parallel_tree_learner.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils/openmp_wrapper.cpp -o utils/openmp_wrapper.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c c_api.cpp -o c_api.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c lightgbm_R.cpp -o lightgbm_R.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o lightgbm.so boosting/boosting.o boosting/gbdt.o boosting/gbdt_model_text.o boosting/gbdt_prediction.o boosting/prediction_early_stop.o boosting/sample_strategy.o io/bin.o io/config.o io/config_auto.o io/dataset.o io/dataset_loader.o io/file_io.o io/json11.o io/metadata.o io/parser.o io/train_share_states.o io/tree.o metric/dcg_calculator.o metric/metric.o objective/objective_function.o network/linker_topo.o network/linkers_mpi.o network/linkers_socket.o network/network.o treelearner/data_parallel_tree_learner.o treelearner/feature_histogram.o treelearner/feature_parallel_tree_learner.o treelearner/gpu_tree_learner.o treelearner/gradient_discretizer.o treelearner/linear_tree_learner.o treelearner/serial_tree_learner.o treelearner/tree_learner.o treelearner/voting_parallel_tree_learner.o utils/openmp_wrapper.o c_api.o lightgbm_R.o -fopenmp -pthread installing to /tmp/th798/16121111/R-devel/1314/library/00LOCK-lightgbm/00new/lightgbm/libs ** R ** data ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (lightgbm) * installing *source* package 'SHAPforxgboost' ... ** this is package 'SHAPforxgboost' version '0.1.3' ** package 'SHAPforxgboost' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (SHAPforxgboost) The downloaded source packages are in '/tmp/th798/16121111/Rtmp9ZWOdL/downloaded_packages' > cat("Time to install revdep:\n") Time to install revdep: > print(install.time) user system elapsed 147.364 8.274 171.382 > print(Sys.time()) [1] "2025-03-26 01:44:49 MST" > downloaded_packages <- file.path( + tempdir(), + "downloaded_packages") > dl.glob <- file.path( + downloaded_packages, + paste0(rev.dep,"_*.tar.gz")) > rev.dep.dl.row <- cbind(rev.dep, Sys.glob(dl.glob)) > colnames(rev.dep.dl.row) <- c("pkg","path") > rev.dep.release.tar.gz <- normalizePath(rev.dep.dl.row[,"path"], mustWork=TRUE) > pkg.Rcheck <- paste0(rev.dep, ".Rcheck") > > proj.dir <- "~/genomic-ml/data.table-revdeps" > source(file.path(proj.dir, "myStatus.R")) > Rvers <- gsub("[()]", "", gsub(" ", "_", R.version[["version.string"]])) > dir.create(Rvers, showWarnings=FALSE) > Rcheck.list <- list() > for(dt.version.short in c("release", "master")){ + dt.tar.gz <- cargs[[dt.version.short]] + dt.version <- gsub(".tar.gz|/.*?_", "", dt.tar.gz) + print(Sys.time()) + install.packages(dt.tar.gz, repos=NULL) + print(Sys.time()) + check.cmd <- get_check_cmd(rev.dep.release.tar.gz) + system(check.cmd) + print(Sys.time()) + dest.Rcheck <- file.path( + Rvers, + paste0(dt.version, ".Rcheck")) + unlink(dest.Rcheck, recursive=TRUE) + file.rename(pkg.Rcheck, dest.Rcheck) + Rcheck.list[[dt.version]] <- file.path(dest.Rcheck, "00check.log") + } [1] "2025-03-26 01:44:49 MST" Installing package into '/tmp/th798/16121111/R-devel/1314/library' (as 'lib' is unspecified) * installing *source* package 'data.table' ... ** this is package 'data.table' version '1.17.0' ** package 'data.table' successfully unpacked and MD5 sums checked ** using staged installation zlib 1.2.13 is available ok * checking if R installation supports OpenMP without any extra hints... yes ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assign.c -o assign.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c between.c -o between.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bmerge.c -o bmerge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c chmatch.c -o chmatch.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cj.c -o cj.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coalesce.c -o coalesce.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dogroups.c -o dogroups.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastmean.c -o fastmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fcast.c -o fcast.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fifelse.c -o fifelse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fmelt.c -o fmelt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c forder.c -o forder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frank.c -o frank.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fread.c -o fread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c freadR.c -o freadR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c froll.c -o froll.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollR.c -o frollR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frolladaptive.c -o frolladaptive.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fsort.c -o fsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwrite.c -o fwrite.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwriteR.c -o fwriteR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsumm.c -o gsumm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c idatetime.c -o idatetime.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ijoin.c -o ijoin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c inrange.c -o inrange.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nafill.c -o nafill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c negate.c -o negate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nqrecreateindices.c -o nqrecreateindices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c openmp-utils.c -o openmp-utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c programming.c -o programming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c quickselect.c -o quickselect.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbindlist.c -o rbindlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reorder.c -o reorder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shift.c -o shift.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snprintf.c -o snprintf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c transpose.c -o transpose.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c types.c -o types.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uniqlist.c -o uniqlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c vecseq.c -o vecseq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrappers.c -o wrappers.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o data.table.so assign.o between.o bmerge.o chmatch.o cj.o coalesce.o dogroups.o fastmean.o fcast.o fifelse.o fmelt.o forder.o frank.o fread.o freadR.o froll.o frollR.o frolladaptive.o fsort.o fwrite.o fwriteR.o gsumm.o idatetime.o ijoin.o init.o inrange.o nafill.o negate.o nqrecreateindices.o openmp-utils.o programming.o quickselect.o rbindlist.o reorder.o shift.o snprintf.o subset.o transpose.o types.o uniqlist.o utils.o vecseq.o wrappers.o -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz PKG_CFLAGS = -fopenmp -I/home/th798/.conda/envs/emacs1/include PKG_LIBS = -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz if [ "data.table.so" != "data_table.so" ]; then mv data.table.so data_table.so; fi if [ "" != "Windows_NT" ] && [ `uname -s` = 'Darwin' ]; then install_name_tool -id data_table.so data_table.so; fi installing to /tmp/th798/16121111/R-devel/1314/library/00LOCK-data.table/00new/data.table/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (data.table) [1] "2025-03-26 01:45:10 MST" * using log directory '/tmp/th798/16121111/R-devel/1314/SHAPforxgboost.Rcheck' * using R Under development (unstable) (2025-03-25 r88054) * using platform: x86_64-pc-linux-gnu * R was compiled by gcc (Spack GCC) 12.2.0 GNU Fortran (Spack GCC) 12.2.0 * running under: Red Hat Enterprise Linux 8.10 (Ootpa) * using session charset: ASCII * checking for file 'SHAPforxgboost/DESCRIPTION' ... OK * this is package 'SHAPforxgboost' version '0.1.3' * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... OK * checking if this is a source package ... OK * checking if there is a namespace ... OK * checking for executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package 'SHAPforxgboost' can be installed ... OK * checking installed package size ... OK * checking package directory ... OK * checking 'build' directory ... OK * checking DESCRIPTION meta-information ... OK * checking top-level files ... OK * checking for left-over files ... OK * checking index information ... OK * checking package subdirectories ... OK * checking code files for non-ASCII characters ... OK * checking R files for syntax errors ... OK * checking whether the package can be loaded ... OK * checking whether the package can be loaded with stated dependencies ... OK * checking whether the package can be unloaded cleanly ... OK * checking whether the namespace can be loaded with stated dependencies ... OK * checking whether the namespace can be unloaded cleanly ... OK * checking loading without being on the library search path ... OK * checking dependencies in R code ... OK * checking S3 generic/method consistency ... OK * checking replacement functions ... OK * checking foreign function calls ... OK * checking R code for possible problems ... OK * checking Rd files ... OK * checking Rd metadata ... OK * checking Rd cross-references ... OK * checking for missing documentation entries ... OK * checking for code/documentation mismatches ... OK * checking Rd \usage sections ... OK * checking Rd contents ... OK * checking for unstated dependencies in examples ... OK * checking contents of 'data' directory ... OK * checking data for non-ASCII characters ... OK * checking LazyData ... OK * checking data for ASCII and uncompressed saves ... OK * checking installed files from 'inst/doc' ... OK * checking files in 'vignettes' ... OK * checking examples ... OK * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * checking PDF version of manual ... OK * DONE Status: OK [1] "2025-03-26 01:47:54 MST" [1] "2025-03-26 01:47:54 MST" Installing package into '/tmp/th798/16121111/R-devel/1314/library' (as 'lib' is unspecified) * installing *source* package 'data.table' ... ** this is package 'data.table' version '1.17.99' ** using staged installation zlib 1.2.13 is available ok * checking if R installation supports OpenMP without any extra hints... yes ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assign.c -o assign.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c between.c -o between.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bmerge.c -o bmerge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c chmatch.c -o chmatch.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cj.c -o cj.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coalesce.c -o coalesce.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dogroups.c -o dogroups.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastmean.c -o fastmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fcast.c -o fcast.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fifelse.c -o fifelse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fmelt.c -o fmelt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c forder.c -o forder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frank.c -o frank.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fread.c -o fread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c freadR.c -o freadR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c froll.c -o froll.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollR.c -o frollR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frolladaptive.c -o frolladaptive.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fsort.c -o fsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwrite.c -o fwrite.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwriteR.c -o fwriteR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsumm.c -o gsumm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c idatetime.c -o idatetime.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ijoin.c -o ijoin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c inrange.c -o inrange.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nafill.c -o nafill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c negate.c -o negate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nqrecreateindices.c -o nqrecreateindices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c openmp-utils.c -o openmp-utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c programming.c -o programming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c quickselect.c -o quickselect.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbindlist.c -o rbindlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reorder.c -o reorder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shift.c -o shift.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snprintf.c -o snprintf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c transpose.c -o transpose.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c types.c -o types.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uniqlist.c -o uniqlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c vecseq.c -o vecseq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrappers.c -o wrappers.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o data.table.so assign.o between.o bmerge.o chmatch.o cj.o coalesce.o dogroups.o fastmean.o fcast.o fifelse.o fmelt.o forder.o frank.o fread.o freadR.o froll.o frollR.o frolladaptive.o fsort.o fwrite.o fwriteR.o gsumm.o idatetime.o ijoin.o init.o inrange.o nafill.o negate.o nqrecreateindices.o openmp-utils.o programming.o quickselect.o rbindlist.o reorder.o shift.o snprintf.o subset.o transpose.o types.o uniqlist.o utils.o vecseq.o wrappers.o -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz PKG_CFLAGS = -fopenmp -I/home/th798/.conda/envs/emacs1/include PKG_LIBS = -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz if [ "data.table.so" != "data_table.so" ]; then mv data.table.so data_table.so; fi if [ "" != "Windows_NT" ] && [ `uname -s` = 'Darwin' ]; then install_name_tool -id data_table.so data_table.so; fi installing to /tmp/th798/16121111/R-devel/1314/library/00LOCK-data.table/00new/data.table/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (data.table) [1] "2025-03-26 01:48:19 MST" * using log directory '/tmp/th798/16121111/R-devel/1314/SHAPforxgboost.Rcheck' * using R Under development (unstable) (2025-03-25 r88054) * using platform: x86_64-pc-linux-gnu * R was compiled by gcc (Spack GCC) 12.2.0 GNU Fortran (Spack GCC) 12.2.0 * running under: Red Hat Enterprise Linux 8.10 (Ootpa) * using session charset: ASCII * checking for file 'SHAPforxgboost/DESCRIPTION' ... OK * this is package 'SHAPforxgboost' version '0.1.3' * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... OK * checking if this is a source package ... OK * checking if there is a namespace ... OK * checking for executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package 'SHAPforxgboost' can be installed ... OK * checking installed package size ... OK * checking package directory ... OK * checking 'build' directory ... OK * checking DESCRIPTION meta-information ... OK * checking top-level files ... OK * checking for left-over files ... OK * checking index information ... OK * checking package subdirectories ... OK * checking code files for non-ASCII characters ... OK * checking R files for syntax errors ... OK * checking whether the package can be loaded ... OK * checking whether the package can be loaded with stated dependencies ... OK * checking whether the package can be unloaded cleanly ... OK * checking whether the namespace can be loaded with stated dependencies ... OK * checking whether the namespace can be unloaded cleanly ... OK * checking loading without being on the library search path ... OK * checking dependencies in R code ... OK * checking S3 generic/method consistency ... OK * checking replacement functions ... OK * checking foreign function calls ... OK * checking R code for possible problems ... OK * checking Rd files ... OK * checking Rd metadata ... OK * checking Rd cross-references ... OK * checking for missing documentation entries ... OK * checking for code/documentation mismatches ... OK * checking Rd \usage sections ... OK * checking Rd contents ... OK * checking for unstated dependencies in examples ... OK * checking contents of 'data' directory ... OK * checking data for non-ASCII characters ... OK * checking LazyData ... OK * checking data for ASCII and uncompressed saves ... OK * checking installed files from 'inst/doc' ... OK * checking files in 'vignettes' ... OK * checking examples ... OK * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * checking PDF version of manual ... OK * DONE Status: OK [1] "2025-03-26 01:50:31 MST" > system(paste(c("diff -u", Rcheck.list), collapse=" ")) > library(data.table, lib.loc=R.home("library")) > (sig.diff.dt <- myDiff(Rvers)) Key: Empty data.table (0 rows and 3 cols): checking,master,release > > ## If there are significant differences, use git bisect to find when > ## they started. > if(nrow(sig.diff.dt)){ + dt.git <- file.path(task.dir, "data.table.git") + system(paste("cd ~/R/data.table && git fetch --tags")) + system(paste("git clone ~/R/data.table", dt.git)) + release.tag <- gsub(".tar.gz|.*_", "", cargs[["release"]]) + rev.parse.cmd <- paste( + "cd", dt.git, "&& git rev-parse master") + master.sha <- system(rev.parse.cmd, intern=TRUE) + merge.base.cmd <- paste( + "cd", dt.git, "&& git merge-base master", release.tag) + merge.base.sha <- system(merge.base.cmd, intern=TRUE) + old.sha <- merge.base.sha + run_R <- file.path(proj.dir, "install_dt_then_check_dep.R") + sig.diff.dt[, first.bad.commit := NA_character_] + sig.diff.dt[, comments := NA_character_] + for(diff.i in 1:nrow(sig.diff.dt)){ + sig.diff.row <- sig.diff.dt[diff.i] + bisect.cmd <- paste( + "cd", dt.git, "&&", + "git bisect start &&", + "git bisect old", old.sha, "&&", + "git bisect new master &&", + "git bisect run", + R.home('bin/Rscript'), + run_R, + shQuote(sig.diff.row$checking), + sig.diff.row$release, + rev.dep.release.tar.gz, + release.tag) + print(bisect.cmd) + bisect.out <- system(bisect.cmd, intern=TRUE) + cat(bisect.out,sep="\n") + if(is.null(attr(bisect.out,"status"))){ + first.bad.sha <- nc::capture_all_str( + bisect.out, + sha="[0-9a-f]+", + " is the first new commit")$sha + parent.cmd <- paste( + "cd ~/R/data.table && git log --pretty=%P -n 1", + first.bad.sha) + parent.sha <- system(parent.cmd, intern=TRUE) + sig.diff.dt[diff.i, first.bad.commit := first.bad.sha] + parent.msg <- paste0("parent=", parent.sha) + this.comment <- if(parent.sha==old.sha){ + paste(parent.msg, "same as git bisect old") + }else if(first.bad.sha==master.sha){ + paste("same as git bisect new=master,", parent.msg) + }else{ + parent.msg + } + sig.diff.dt[diff.i, comments := this.comment] + } + } + ## add CRAN column. + sig.diff.dt[, CRAN := { + flavor <- get_flavor(Rvers) + details <- data.table(flavor=unique(flavor))[, { + base <- "https://www.r-project.org/nosvn/R.check/" + u <- paste0(base, flavor, "/", rev.dep, "-00check.txt") + check.txt <- tempfile() + tryCatch({ + download.file(u, check.txt, quiet=TRUE) + }, error=function(e){ + NULL + }) + check.lines <- if(file.exists(check.txt)){ + readLines(check.txt,encoding="UTF-8") + }else{ + "" + } + repl.lines <- gsub("[\u2018\u2019]", "'", check.lines) + ##gsub("[‘’]", "'", check.lines) does not work with LC_ALL=C. + myStatus(line.vec=repl.lines) + }, by=flavor] + select.dt <- data.table(flavor, checking) + details[select.dt, msg, on=.(flavor, checking)] + }] + dir.create(file.path(job.dir, Rvers)) + diffs.csv <- file.path(job.dir, Rvers, "significant_differences.csv") + data.table::fwrite(sig.diff.dt, diffs.csv) + print(sig.diff.dt) + } > WARNING: ignoring environment value of R_HOME R version 4.4.3 (2025-02-28) -- "Trophy Case" 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. 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. > cargs <- commandArgs(trailingOnly=TRUE) > if(length(cargs)==0){ + ## before running interactively, make sure to start emacs/R with + ## environment defined in /scratch/...check_one.sh, particularly + ## R_LIBS_USER=/tmp/... otherwise we get error when installing + ## data.table. + base <- "/scratch/th798/data.table-revdeps/*" + cargs <- c( + Sys.glob(file.path(base,"deps.csv")), + "349", + Sys.glob(file.path(base, "data.table_release_*tar.gz")), + Sys.glob(file.path(base, "data.table_master_*tar.gz")) + ) + } > names(cargs) <- c("deps.csv", "task.str", "release", "master") > dput(cargs) c(deps.csv = "/scratch/th798/data.table-revdeps/2025-03-26/deps.csv", task.str = "1314", release = "/scratch/th798/data.table-revdeps/2025-03-26/data.table_release_1.17.0.tar.gz", master = "/scratch/th798/data.table-revdeps/2025-03-26/data.table_master_1.17.99.77b43940971091a63baeccf65ec3b2d729dc3a57.tar.gz" ) > (task.dir <- dirname(.libPaths()[1]))#should be /tmp/th798/slurmid/R-vers [1] "/tmp/th798/16121111/R-release/1314" > if(requireNamespace("R.cache"))R.cache::getCachePath() Loading required namespace: R.cache [1] "/tmp/th798/16121111/R-release/1314/R.cache" > task.id <- as.integer(cargs[["task.str"]]) > deps.df <- read.csv(cargs[["deps.csv"]]) > (rev.dep <- deps.df$Package[task.id]) [1] "SHAPforxgboost" > job.dir <- file.path(dirname(cargs[["deps.csv"]]), "tasks", task.id) > setwd(task.dir) > .libPaths() [1] "/tmp/th798/16121111/R-release/1314/library" [2] "/projects/genomic-ml/R/R-release/library" > options(repos=c(#this should be in ~/.Rprofile too. + CRAN="http://cloud.r-project.org")) > print(Sys.time()) [1] "2025-03-26 01:50:36 MST" > install.time <- system.time({ + install.packages(rev.dep, dep=TRUE) + }) Installing package into '/tmp/th798/16121111/R-release/1314/library' (as 'lib' is unspecified) also installing the dependency 'lightgbm' trying URL 'http://cloud.r-project.org/src/contrib/lightgbm_4.6.0.tar.gz' Content type 'application/x-gzip' length 1724660 bytes (1.6 MB) ================================================== downloaded 1.6 MB trying URL 'http://cloud.r-project.org/src/contrib/SHAPforxgboost_0.1.3.tar.gz' Content type 'application/x-gzip' length 680310 bytes (664 KB) ================================================== downloaded 664 KB * installing *source* package 'lightgbm' ... ** package 'lightgbm' successfully unpacked and MD5 sums checked ** using staged installation checking location of R... /home/th798/R/R-release checking whether MM_PREFETCH works... yes checking whether MM_MALLOC works... yes configure: creating ./config.status config.status: creating src/Makevars ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' using C++17 /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c boosting/boosting.cpp -o boosting/boosting.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c boosting/gbdt.cpp -o boosting/gbdt.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c boosting/gbdt_model_text.cpp -o boosting/gbdt_model_text.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c boosting/gbdt_prediction.cpp -o boosting/gbdt_prediction.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c boosting/prediction_early_stop.cpp -o boosting/prediction_early_stop.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c boosting/sample_strategy.cpp -o boosting/sample_strategy.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/bin.cpp -o io/bin.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/config.cpp -o io/config.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/config_auto.cpp -o io/config_auto.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/dataset.cpp -o io/dataset.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/dataset_loader.cpp -o io/dataset_loader.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/file_io.cpp -o io/file_io.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/json11.cpp -o io/json11.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/metadata.cpp -o io/metadata.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/parser.cpp -o io/parser.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/train_share_states.cpp -o io/train_share_states.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c io/tree.cpp -o io/tree.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c metric/dcg_calculator.cpp -o metric/dcg_calculator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c metric/metric.cpp -o metric/metric.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c objective/objective_function.cpp -o objective/objective_function.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c network/linker_topo.cpp -o network/linker_topo.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c network/linkers_mpi.cpp -o network/linkers_mpi.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c network/linkers_socket.cpp -o network/linkers_socket.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c network/network.cpp -o network/network.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/data_parallel_tree_learner.cpp -o treelearner/data_parallel_tree_learner.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/feature_histogram.cpp -o treelearner/feature_histogram.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/feature_parallel_tree_learner.cpp -o treelearner/feature_parallel_tree_learner.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/gpu_tree_learner.cpp -o treelearner/gpu_tree_learner.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/gradient_discretizer.cpp -o treelearner/gradient_discretizer.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/linear_tree_learner.cpp -o treelearner/linear_tree_learner.o In file included from ./include/Eigen/Core:205, from ./include/Eigen/Dense:1, from treelearner/linear_tree_learner.cpp:7: ./include/Eigen/src/Core/arch/SSE/PacketMath.h:46:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 46 | typedef eigen_packet_wrapper<__m128i, 0> Packet4i; | ^ ./include/Eigen/src/Core/arch/SSE/PacketMath.h:47:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 47 | typedef eigen_packet_wrapper<__m128i, 1> Packet16b; | ^ ./include/Eigen/src/Core/arch/SSE/PacketMath.h:49:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes] 49 | template<> struct is_arithmetic<__m128> { enum { value = true }; }; | ^ ./include/Eigen/src/Core/arch/SSE/PacketMath.h:50:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 50 | template<> struct is_arithmetic<__m128i> { enum { value = true }; }; | ^ ./include/Eigen/src/Core/arch/SSE/PacketMath.h:51:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes] 51 | template<> struct is_arithmetic<__m128d> { enum { value = true }; }; | ^ ./include/Eigen/src/Core/arch/SSE/PacketMath.h:222:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 222 | template<> struct unpacket_traits { | ^ ./include/Eigen/src/Core/arch/SSE/PacketMath.h:228:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 228 | template<> struct unpacket_traits { | ^ ./include/Eigen/src/Core/arch/SSE/PacketMath.h:1124:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 1124 | ptranspose(PacketBlock& kernel) { | ^ ./include/Eigen/src/Core/arch/SSE/PacketMath.h:1129:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 1129 | ptranspose(PacketBlock& kernel) { | ^ In file included from ./include/Eigen/Core:174: ./include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ ./include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ ./include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ ./include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ ./include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from ./include/Eigen/Core:165: ./include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ./include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' ./include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' ./include/Eigen/src/Geometry/arch/Geometry_SIMD.h:24:46: required from here ./include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes] ./include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ In file included from ./include/Eigen/Core:271: ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ./include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ./include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ./include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' ./include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' ./include/Eigen/src/Geometry/arch/Geometry_SIMD.h:27:3: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ./include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' ./include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' ./include/Eigen/src/Geometry/arch/Geometry_SIMD.h:98:47: required from here ./include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ./include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ./include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ./include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' ./include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' ./include/Eigen/src/Geometry/arch/Geometry_SIMD.h:102:3: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ./include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' ./include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ./include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' treelearner/linear_tree_learner.cpp:347:17: required from here ./include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ./include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ./include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' treelearner/linear_tree_learner.cpp:347:17: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >' ./include/Eigen/src/Core/Inverse.h:68:7: required from 'class Eigen::InverseImpl >, Eigen::SolverStorage>' ./include/Eigen/src/Core/Inverse.h:43:7: required from 'class Eigen::Inverse > >' treelearner/linear_tree_learner.cpp:356:61: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Inverse > > >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Inverse > > > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Inverse > > > >' ./include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Inverse > >, Eigen::Dense>' ./include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Inverse > > >' treelearner/linear_tree_learner.cpp:356:65: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Inverse > > >, Eigen::Matrix, 0>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Inverse > > >, Eigen::Matrix, 0> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Inverse > > >, Eigen::Matrix, 0> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, const Eigen::Inverse > > >, Eigen::Matrix, 0, 8>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, const Eigen::Inverse > > >, Eigen::Matrix, 0, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>' treelearner/linear_tree_learner.cpp:356:63: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' ./include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>' ./include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >' ./include/Eigen/src/LU/FullPivLU.h:495:28: required from 'void Eigen::FullPivLU::computeInPlace() [with _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >' ./include/Eigen/src/Core/VectorwiseOp.h:56:7: required from 'class Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 0>' ./include/Eigen/src/LU/FullPivLU.h:495:44: required from 'void Eigen::FullPivLU::computeInPlace() [with _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false> > >' ./include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false> >' ./include/Eigen/src/LU/FullPivLU.h:520:35: required from 'void Eigen::FullPivLU::computeInPlace() [with _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, false> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 1, -1, false>, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0, 5>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ./include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ./include/Eigen/src/Core/Matrix.h:178:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ./include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ./include/Eigen/src/Core/SelfCwiseBinaryOp.h:41:67: required from 'Derived& Eigen::DenseBase::operator/=(const Scalar&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double]' ./include/Eigen/src/LU/FullPivLU.h:559:34: required from 'void Eigen::FullPivLU::computeInPlace() [with _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] In file included from ./include/Eigen/Core:277: ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >' ./include/Eigen/src/Core/CoreEvaluators.h:564:45: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, -1, -1, false> >, Eigen::internal::IndexBased, double>' ./include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, -1, false> > >' ./include/Eigen/src/Core/Visitor.h:79:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, -1, -1, false> > >' ./include/Eigen/src/Core/Visitor.h:123:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, const Eigen::Block, -1, -1, false> >, 0>; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false> >]' ./include/Eigen/src/Core/Visitor.h:348:14: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Inverse > > >, const Eigen::Block, -1, 1, true>, 0>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Inverse > > >, const Eigen::Block, -1, 1, true>, 0> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Inverse > > >, const Eigen::Block, -1, 1, true>, 0> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, const Eigen::Inverse > > >, const Eigen::Block, -1, 1, true>, 0, 7>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, const Eigen::Inverse > > >, const Eigen::Block, -1, 1, true>, 0, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::Inverse > > >, const Eigen::Block, -1, 1, true>, 0>' ./include/Eigen/src/Core/ProductEvaluators.h:345:45: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>' ./include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>' ./include/Eigen/src/Core/Block.h:154:7: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, true> >' ./include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval, -1, 1, true>, Eigen::Dense>' ./include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, const Eigen::Inverse > > >, const Eigen::Block, -1, 1, true>, Eigen::DenseShape, Eigen::DenseShape, 7>' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:479:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Matrix, 0>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Matrix, 0> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Matrix, 0> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Matrix, 0, 7>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Matrix, 0, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Matrix, 0>' ./include/Eigen/src/Core/ProductEvaluators.h:345:45: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Inverse > > >, 1, -1, false>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Inverse > > >, 1, -1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Inverse > > >, 1, -1, false> >' ./include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Inverse > > >, 1, -1, false, false>' ./include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Inverse > > >, 1, -1, false, Eigen::Dense>' ./include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Inverse > > >, 1, -1, false>' ./include/Eigen/src/Core/Product.h:113:15: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Inverse > > >, 1, -1, false> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, const Eigen::Inverse > > >, 1, -1, false> >' ./include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:486:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, Eigen::Matrix, 1>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >, Eigen::Matrix, 1> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >, Eigen::Matrix, 1> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base > >, Eigen::Matrix, 1, 8>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl > >, Eigen::Matrix, 1, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product > >, Eigen::Matrix, 1>' ./include/Eigen/src/Core/ProductEvaluators.h:469:72: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' ./include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >' ./include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Product > >, Eigen::Matrix, 1> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Product > >, Eigen::Matrix, 1>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Product > >, Eigen::Matrix, 1> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Product > >, Eigen::Matrix, 1> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Product > >, Eigen::Matrix, 1> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Product > >, Eigen::Matrix, 1>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Product > >, Eigen::Matrix, 1> >' ./include/Eigen/src/Core/ProductEvaluators.h:469:55: required from 'static void Eigen::internal::generic_product_impl::eval_dynamic_impl(Dst&, const LhsT&, const RhsT&, const Func&, const Scalar&, Eigen::internal::true_type) [with Dst = Eigen::Matrix; LhsT = Eigen::Inverse > >; RhsT = Eigen::Matrix; Func = Eigen::internal::assign_op; Scalar = double; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:446:22: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ./include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ./include/Eigen/src/Core/CwiseNullaryOp.h:347:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/CwiseNullaryOp.h:548:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:444:18: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, true>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, true>, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, true> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, true>, 0>' ./include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true>, -1, 1, true, true>' ./include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >' ./include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true, false>' ./include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true, Eigen::Dense>' ./include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true>' ./include/Eigen/src/Core/ProductEvaluators.h:380:43: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ./include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ./include/Eigen/src/Core/Matrix.h:178:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >': ./include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, 1, -1, false>; Functor = swap_assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, 1, -1, false>; Func = swap_assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ./include/Eigen/src/Core/DenseBase.h:424:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >': ./include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>; SrcXprType = Eigen::Block, -1, 1, true>; Functor = swap_assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>; SrcXprType = Eigen::Block, -1, 1, true>; Functor = Eigen::internal::swap_assign_op; Weak = void]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, true>; Src = Eigen::Block, -1, 1, true>; Func = swap_assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, true>; Src = Eigen::Block, -1, 1, true>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ./include/Eigen/src/Core/DenseBase.h:424:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >': ./include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = div_assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = Eigen::internal::div_assign_op; Weak = void]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ./include/Eigen/src/Core/SelfCwiseBinaryOp.h:41:28: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >': ./include/Eigen/src/Core/ProductEvaluators.h:274:18: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]' ./include/Eigen/src/Core/ProductEvaluators.h:329:41: required from 'static void Eigen::internal::generic_product_impl::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 1, -1, false>, 1, -1, false>]' ./include/Eigen/src/Core/ProductEvaluators.h:178:42: required from 'static void Eigen::internal::Assignment, Eigen::internal::sub_assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::sub_assign_op&) [with DstXprType = Eigen::Block, -1, -1, false>; Lhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 1, -1, false>, 1, -1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Product, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>; Func = sub_assign_op]' ./include/Eigen/src/Core/NoAlias.h:59:31: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' ./include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >' ./include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >' ./include/Eigen/src/Core/ProductEvaluators.h:280:48: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]' ./include/Eigen/src/Core/ProductEvaluators.h:329:41: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] In file included from ./include/Eigen/Core:333: ./include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'class Eigen::internal::gemv_traits': ./include/Eigen/src/Core/products/GeneralMatrixVector.h:87:38: required from 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>' ./include/Eigen/src/Core/GeneralProduct.h:253:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Matrix; Rhs = Eigen::Block, -1, 1, true>; Dest = Eigen::Block, -1, 1, true>; typename Dest::Scalar = double]' ./include/Eigen/src/Core/ProductEvaluators.h:388:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, true>; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = const Eigen::Block, -1, 1, true>; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:479:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 51 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 52 | unpacket_traits<_RhsPacket>::vectorizable && | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 54 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 55 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 56 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1 | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 59 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 60 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 61 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'class Eigen::internal::gemv_traits': ./include/Eigen/src/Core/products/GeneralMatrixVector.h:91:42: required from 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>' ./include/Eigen/src/Core/GeneralProduct.h:253:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Matrix; Rhs = Eigen::Block, -1, 1, true>; Dest = Eigen::Block, -1, 1, true>; typename Dest::Scalar = double]' ./include/Eigen/src/Core/ProductEvaluators.h:388:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, true>; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = const Eigen::Block, -1, 1, true>; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:479:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 51 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 52 | unpacket_traits<_RhsPacket>::vectorizable && | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 54 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 55 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 56 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1 | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 59 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 60 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 61 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'class Eigen::internal::gemv_traits': ./include/Eigen/src/Core/products/GeneralMatrixVector.h:95:45: required from 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>' ./include/Eigen/src/Core/GeneralProduct.h:253:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Matrix; Rhs = Eigen::Block, -1, 1, true>; Dest = Eigen::Block, -1, 1, true>; typename Dest::Scalar = double]' ./include/Eigen/src/Core/ProductEvaluators.h:388:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, true>; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = const Eigen::Block, -1, 1, true>; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:479:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 51 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 52 | unpacket_traits<_RhsPacket>::vectorizable && | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 54 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 55 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 56 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1 | ^~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 59 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 60 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 61 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, Eigen::Stride<0, 0> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, Eigen::Stride<0, 0> > >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, Eigen::Stride<0, 0> >, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> >, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >' ./include/Eigen/src/Core/GeneralProduct.h:296:40: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Matrix; Rhs = Eigen::Block, -1, 1, true>; Dest = Eigen::Block, -1, 1, true>; typename Dest::Scalar = double]' ./include/Eigen/src/Core/ProductEvaluators.h:388:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >' ./include/Eigen/src/Core/GeneralProduct.h:207:26: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >' ./include/Eigen/src/Core/GeneralProduct.h:207:43: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Inverse > > >, 1, -1, false> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Inverse > > >, 1, -1, false> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Inverse > > >, 1, -1, false> > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, const Eigen::Inverse > > >, 1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >' ./include/Eigen/src/Core/Dot.h:50:23: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, const Eigen::Inverse > > >, 1, -1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, true>; ResScalar = double]' ./include/Eigen/src/Core/Dot.h:84:58: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true> >' ./include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, const Eigen::Inverse > > >, 1, -1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, true>; ResScalar = double]' ./include/Eigen/src/Core/Dot.h:84:58: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true>, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >' ./include/Eigen/src/Core/Dot.h:50:23: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true>; U = Eigen::Block, -1, 1, true>; ResScalar = double]' ./include/Eigen/src/Core/Dot.h:84:58: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, 1, true> >' ./include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true>; U = Eigen::Block, -1, 1, true>; ResScalar = double]' ./include/Eigen/src/Core/Dot.h:84:58: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, -1, 1, true>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, -1, 1, true>, 1>' ./include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, -1, 1, true>, 3>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >, -1, 1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >, -1, 1, true> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false> >, -1, 1, true>, 0>' ./include/Eigen/src/Core/MapBase.h:223:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] In file included from ./include/Eigen/Core:330: ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits': ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:147:40: required from 'void Eigen::internal::evaluateProductBlockingSizesHeuristic(Index&, Index&, Index&, Index) [with LhsScalar = double; RhsScalar = double; int KcFactor = 1; Index = long int]' ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:342:81: required from 'void Eigen::internal::computeProductBlockingSizes(Index&, Index&, Index&, Index) [with LhsScalar = double; RhsScalar = double; int KcFactor = 1; Index = long int]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:355:66: required from 'Eigen::internal::gemm_blocking_space::gemm_blocking_space(Eigen::Index, Eigen::Index, Eigen::Index, Eigen::Index, bool) [with int StorageOrder = 0; _LhsScalar = double; _RhsScalar = double; int MaxRows = -1; int MaxCols = -1; int MaxDepth = -1; int KcFactor = 1; Eigen::Index = long int]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:507:18: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 433 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 434 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 435 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 460 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 461 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 462 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 465 | typedef QuadPacket RhsPacketx4; | ^~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits': ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1080:42: required from 'struct Eigen::internal::gebp_kernel, 4, 4, false, false>' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:82:107: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:230:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]' ./include/Eigen/src/Core/products/Parallelizer.h:114:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long int]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:509:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 433 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 434 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 435 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 460 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 461 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 462 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 465 | typedef QuadPacket RhsPacketx4; | ^~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits': ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1085:45: required from 'struct Eigen::internal::gebp_kernel, 4, 4, false, false>' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:82:107: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:230:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]' ./include/Eigen/src/Core/products/Parallelizer.h:114:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long int]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:509:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 433 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 434 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 435 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 460 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 461 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 462 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 465 | typedef QuadPacket RhsPacketx4; | ^~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, -1, 1, true>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, -1, 1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, -1, 1, true> >' ./include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, -1, 1, true, false>' ./include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, -1, 1, true, Eigen::Dense>' ./include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, -1, 1, true>' ./include/Eigen/src/Core/PartialReduxEvaluator.h:183:72: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_lhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long int; DataMapper = Eigen::internal::const_blas_data_mapper; int Pack1 = 4; int Pack2 = 2; Packet = __vector(2) double; bool Conjugate = false; bool PanelMode = false]': ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:184:17: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:230:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]' ./include/Eigen/src/Core/products/Parallelizer.h:114:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long int]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:509:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2100:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2100 | typedef typename unpacket_traits::half>::half QuarterPacket; | ^~~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2102:56: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2102 | HalfPacketSize = unpacket_traits::size, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2103:62: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2103 | QuarterPacketSize = unpacket_traits::size, | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2103:62: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long int; DataMapper = Eigen::internal::const_blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = false]': ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:195:21: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:230:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]' ./include/Eigen/src/Core/products/Parallelizer.h:114:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long int]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:509:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2459:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 2459 | PacketBlock kernel; | ^~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gebp_kernel::operator()(const DataMapper&, const LhsScalar*, const RhsScalar*, Index, Index, Index, ResScalar, Index, Index, Index, Index) [with LhsScalar = double; RhsScalar = double; Index = long int; DataMapper = Eigen::internal::blas_data_mapper; int mr = 4; int nr = 4; bool ConjugateLhs = false; bool ConjugateRhs = false; ResScalar = double]': ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:198:15: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:230:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]' ./include/Eigen/src/Core/products/Parallelizer.h:114:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long int]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:509:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::CwiseUnaryOp, const Eigen::Inverse > > >; Rhs = Eigen::Matrix]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1920:103: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1920 | const int SResPacketHalfSize = unpacket_traits::half>::size; | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1921:138: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1921 | const int SResPacketQuarterSize = unpacket_traits::half>::half>::size; | ^~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1921:138: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1977:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1977 | typedef typename conditional=8,typename unpacket_traits::half,SResPacket>::type SResPacketHalf; | ^~~~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1978:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1978 | typedef typename conditional=8,typename unpacket_traits::half,SLhsPacket>::type SLhsPacketHalf; | ^~~~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1979:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1979 | typedef typename conditional=8,typename unpacket_traits::half,SRhsPacket>::type SRhsPacketHalf; | ^~~~~~~~~~~~~~ ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1980:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1980 | typedef typename conditional=8,typename unpacket_traits::half,SAccPacket>::type SAccPacketHalf; | ^~~~~~~~~~~~~~ ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, true> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, true> >' ./include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ./include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true> > >' ./include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true> > >' ./include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ./include/Eigen/src/Core/Redux.h:463:25: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >' ./include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >, Eigen::internal::IndexBased, double>' ./include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> > >' ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> > >' ./include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::Inverse > > >, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ./include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ./include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ./include/Eigen/src/LU/FullPivLU.h:855:60: required from 'static void Eigen::internal::Assignment >, Eigen::internal::assign_op::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; MatrixType = Eigen::Matrix; SrcXprType = Eigen::Inverse > >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse > >; Func = assign_op]' ./include/Eigen/src/Core/PlainObjectBase.h:797:41: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >' ./include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl >, Eigen::CwiseNullaryOp, Eigen::Matrix >, Eigen::Dense>' ./include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >' ./include/Eigen/src/LU/FullPivLU.h:855:39: required from 'static void Eigen::internal::Assignment >, Eigen::internal::assign_op::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; MatrixType = Eigen::Matrix; SrcXprType = Eigen::Inverse > >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, -1, 1, true> >': ./include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >' ./include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' ./include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' ./include/Eigen/src/Core/VectorwiseOp.h:114:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double; Scalar = double]' ./include/Eigen/src/Core/PartialReduxEvaluator.h:183:21: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long int]' ./include/Eigen/src/Core/PartialReduxEvaluator.h:177:17: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>' ./include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>' ./include/Eigen/src/Core/Block.h:154:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, false> >' ./include/Eigen/src/Core/ProductEvaluators.h:606:37: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >' ./include/Eigen/src/Core/ProductEvaluators.h:606:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Inverse > >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Inverse > >; CoeffReturnType = double; Eigen::Index = long int]' ./include/Eigen/src/Core/CoreEvaluators.h:769:69: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >': ./include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Functor = sub_assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ./include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, -1, -1, false>, -1, 1, true>]' ./include/Eigen/src/Core/ProductEvaluators.h:305:153: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; Eigen::Index = long int]': ./include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >; Scalar = double]' ./include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' ./include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' ./include/Eigen/src/Core/VectorwiseOp.h:114:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double; Scalar = double]' ./include/Eigen/src/Core/PartialReduxEvaluator.h:183:21: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long int]' ./include/Eigen/src/Core/PartialReduxEvaluator.h:177:17: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/LU/FullPivLU.h:122:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:470:10: required from 'Eigen::FullPivLU::FullPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/LU/FullPivLU.h:872:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' treelearner/linear_tree_learner.cpp:356:50: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> >' ./include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, 1, -1, false> >, Eigen::internal::IndexBased, double>' ./include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> > >' ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> > >' ./include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ./include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2, 8>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2>' ./include/Eigen/src/LU/FullPivLU.h:769:22: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>' ./include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>' ./include/Eigen/src/Core/Block.h:154:7: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::Block, -1, -1, false>, 0>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::Block, -1, -1, false>, 0> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::Block, -1, -1, false>, 0> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::Block, -1, -1, false>, 0, 8>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::Block, -1, -1, false>, 0>' ./include/Eigen/src/LU/FullPivLU.h:776:59: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ./include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ./include/Eigen/src/Core/CwiseNullaryOp.h:347:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Block, 1, -1, false>; Scalar = double]' ./include/Eigen/src/Core/CwiseNullaryOp.h:548:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Block, 1, -1, false>]' ./include/Eigen/src/LU/FullPivLU.h:787:55: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long int; DataMapper = Eigen::internal::blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = true]': ./include/Eigen/src/Core/products/TriangularSolverMatrix.h:155:19: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long int; int Mode = 5; bool Conjugate = false; int TriStorageOrder = 0; int OtherInnerStride = 1]' ./include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; int Side = 1; int Mode = 5]' ./include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 5]' ./include/Eigen/src/Core/TriangularMatrix.h:522:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 5]' ./include/Eigen/src/LU/FullPivLU.h:774:20: required from 'void Eigen::FullPivLU::_solve_impl(const RhsType&, DstType&) const [with RhsType = Eigen::CwiseNullaryOp, Eigen::Matrix >; DstType = Eigen::Matrix; _MatrixType = Eigen::Matrix]' ./include/Eigen/src/Core/Solve.h:147:26: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2459:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 2459 | PacketBlock kernel; | ^~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 1, -1, false>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix >, 1, -1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix >, 1, -1, false> >' ./include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, Eigen::Matrix >, 1, -1, false, false>' ./include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, Eigen::Matrix >, 1, -1, false, Eigen::Dense>' ./include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, Eigen::Matrix >, 1, -1, false>' ./include/Eigen/src/Core/ProductEvaluators.h:1050:11: [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, const Eigen::Block, -1, -1, false>, -1, 1, true>, 0>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, const Eigen::Block, -1, -1, false>, -1, 1, true>, 0> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, const Eigen::Block, -1, -1, false>, -1, 1, true>, 0> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, const Eigen::Block, -1, -1, false>, -1, 1, true>, 0, 7>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, const Eigen::Block, -1, -1, false>, -1, 1, true>, 0, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, const Eigen::Block, -1, -1, false>, -1, 1, true>, 0>' ./include/Eigen/src/Core/ProductEvaluators.h:345:45: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>' ./include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true, true>' ./include/Eigen/src/Core/Block.h:154:7: [ skipping 30 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >': ./include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, const Eigen::Block, -1, -1, false>, -1, 1, true>, Eigen::DenseShape, Eigen::DenseShape, 7>' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:479:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, Eigen::Block, -1, -1, false>, 0>]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >' ./include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, 1, true>, Eigen::Dense>' ./include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, const Eigen::Block, -1, -1, false>, -1, 1, true>, Eigen::DenseShape, Eigen::DenseShape, 7>' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:479:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, Eigen::Block, -1, -1, false>, 0>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false>, Eigen::Block, -1, -1, false>, 0> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false>, Eigen::Block, -1, -1, false>, 0> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 1, -1, false>, Eigen::Block, -1, -1, false>, 0, 7>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 1, -1, false>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 1, -1, false>, Eigen::Block, -1, -1, false>, 0>' ./include/Eigen/src/Core/ProductEvaluators.h:345:45: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 0>' ./include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, 1, -1, false, true>' ./include/Eigen/src/Core/Block.h:154:7: [ skipping 30 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >' ./include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, 1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, 1, -1, false>, Eigen::Block, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:486:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; Scalar = double]' ./include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>]' ./include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::Block, -1, -1, false>, 1>, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::Block, -1, -1, false>, 1> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::Block, -1, -1, false>, 1> >' ./include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::Block, -1, -1, false>, 1, 8>' ./include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::Block, -1, -1, false>, 1, Eigen::Dense>' ./include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::Block, -1, -1, false>, 1>' ./include/Eigen/src/Core/ProductEvaluators.h:462:68: [ skipping 26 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, true>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, true>, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, true> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, -1, 1, true>, 0>' ./include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true>, -1, 1, true, true>' ./include/Eigen/src/Core/Block.h:154:7: [ skipping 28 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1, -1, true>, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1, -1, true>, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false>, 1, -1, true> >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false>, 1, -1, true> >' ./include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 1, -1, true>, 0>' ./include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, 1, -1, false>, 1, -1, true, true>' ./include/Eigen/src/Core/Block.h:154:7: [ skipping 28 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >' ./include/Eigen/src/Core/GeneralProduct.h:207:26: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false> >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false> >, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, 1, -1, false>, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, 1, -1, false> >' ./include/Eigen/src/Core/GeneralProduct.h:207:43: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true> >' ./include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, -1, false>, 1, -1, false>; U = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true>; ResScalar = double]' ./include/Eigen/src/Core/Dot.h:84:58: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1, -1, true> >, 0>': ./include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1, -1, true> >, 2>' ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false>, 1, -1, true> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false>, 1, -1, true> > >' ./include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, 1, -1, false>, 1, -1, true>, Eigen::Dense>' ./include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, 1, -1, false>, 1, -1, true> >' ./include/Eigen/src/Core/Dot.h:50:23: [ skipping 28 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, 1, true> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, 1, true> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, 1, true> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, 1, true> >' ./include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, -1, false>, 1, -1, false>, 1, -1, true>; U = Eigen::Block, -1, -1, false>, -1, 1, true>; ResScalar = double]' ./include/Eigen/src/Core/Dot.h:84:58: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, Eigen::Matrix >, 1, -1, false> >': ./include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Functor = assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Functor = Eigen::internal::assign_op; Weak = void]' ./include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Func = assign_op]' ./include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ./include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>]' ./include/Eigen/src/Core/Assign.h:66:28: [ skipping 25 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, true> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, true> >' ./include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ./include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true> > >' ./include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true> > >' ./include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ./include/Eigen/src/Core/Redux.h:463:25: [ skipping 29 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false>, 1, -1, true> >': ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false>, 1, -1, true> >' ./include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, 1, -1, false>, 1, -1, true> >, Eigen::internal::IndexBased, double>' ./include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false>, 1, -1, true> > >' ./include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false>, 1, -1, true> > >' ./include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ./include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 32 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ./include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true> >, 0>': ./include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true> > >' ./include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true> > >' ./include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true>, Eigen::Dense>' ./include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, -1, 1, true> >' ./include/Eigen/src/Core/ProductEvaluators.h:606:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, -1, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, -1, -1, false>; CoeffReturnType = double; Eigen::Index = long int]' ./include/Eigen/src/Core/AssignEvaluator.h:654:63: [ skipping 30 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ./include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/PlainObjectBase.h:594:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ./include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, const Eigen::Inverse > > >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' treelearner/linear_tree_learner.cpp:356:21: required from 'void LightGBM::LinearTreeLearner::CalculateLinear(LightGBM::Tree*, bool, const LightGBM::score_t*, const LightGBM::score_t*, bool) const [with bool HAS_NAN = true; TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:126:26: required from 'LightGBM::Tree* LightGBM::LinearTreeLearner::Train(const LightGBM::score_t*, const LightGBM::score_t*, bool) [with TREE_LEARNER_TYPE = LightGBM::SerialTreeLearner; LightGBM::score_t = float]' treelearner/linear_tree_learner.cpp:391:129: required from here ./include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/serial_tree_learner.cpp -o treelearner/serial_tree_learner.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/tree_learner.cpp -o treelearner/tree_learner.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c treelearner/voting_parallel_tree_learner.cpp -o treelearner/voting_parallel_tree_learner.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils/openmp_wrapper.cpp -o utils/openmp_wrapper.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c c_api.cpp -o c_api.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I./include -DEIGEN_MPL2_ONLY -DEIGEN_DONT_PARALLELIZE -DMM_PREFETCH=1 -DMM_MALLOC=1 -DUSE_SOCKET -DLGB_R_BUILD -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c lightgbm_R.cpp -o lightgbm_R.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o lightgbm.so boosting/boosting.o boosting/gbdt.o boosting/gbdt_model_text.o boosting/gbdt_prediction.o boosting/prediction_early_stop.o boosting/sample_strategy.o io/bin.o io/config.o io/config_auto.o io/dataset.o io/dataset_loader.o io/file_io.o io/json11.o io/metadata.o io/parser.o io/train_share_states.o io/tree.o metric/dcg_calculator.o metric/metric.o objective/objective_function.o network/linker_topo.o network/linkers_mpi.o network/linkers_socket.o network/network.o treelearner/data_parallel_tree_learner.o treelearner/feature_histogram.o treelearner/feature_parallel_tree_learner.o treelearner/gpu_tree_learner.o treelearner/gradient_discretizer.o treelearner/linear_tree_learner.o treelearner/serial_tree_learner.o treelearner/tree_learner.o treelearner/voting_parallel_tree_learner.o utils/openmp_wrapper.o c_api.o lightgbm_R.o -fopenmp -pthread installing to /tmp/th798/16121111/R-release/1314/library/00LOCK-lightgbm/00new/lightgbm/libs ** R ** data ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (lightgbm) * installing *source* package 'SHAPforxgboost' ... ** package 'SHAPforxgboost' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (SHAPforxgboost) The downloaded source packages are in '/tmp/th798/16121111/Rtmp3ZA2bK/downloaded_packages' > cat("Time to install revdep:\n") Time to install revdep: > print(install.time) user system elapsed 140.099 7.852 152.101 > print(Sys.time()) [1] "2025-03-26 01:53:08 MST" > downloaded_packages <- file.path( + tempdir(), + "downloaded_packages") > dl.glob <- file.path( + downloaded_packages, + paste0(rev.dep,"_*.tar.gz")) > rev.dep.dl.row <- cbind(rev.dep, Sys.glob(dl.glob)) > colnames(rev.dep.dl.row) <- c("pkg","path") > rev.dep.release.tar.gz <- normalizePath(rev.dep.dl.row[,"path"], mustWork=TRUE) > pkg.Rcheck <- paste0(rev.dep, ".Rcheck") > > proj.dir <- "~/genomic-ml/data.table-revdeps" > source(file.path(proj.dir, "myStatus.R")) > Rvers <- gsub("[()]", "", gsub(" ", "_", R.version[["version.string"]])) > dir.create(Rvers, showWarnings=FALSE) > Rcheck.list <- list() > for(dt.version.short in c("release", "master")){ + dt.tar.gz <- cargs[[dt.version.short]] + dt.version <- gsub(".tar.gz|/.*?_", "", dt.tar.gz) + print(Sys.time()) + install.packages(dt.tar.gz, repos=NULL) + print(Sys.time()) + check.cmd <- get_check_cmd(rev.dep.release.tar.gz) + system(check.cmd) + print(Sys.time()) + dest.Rcheck <- file.path( + Rvers, + paste0(dt.version, ".Rcheck")) + unlink(dest.Rcheck, recursive=TRUE) + file.rename(pkg.Rcheck, dest.Rcheck) + Rcheck.list[[dt.version]] <- file.path(dest.Rcheck, "00check.log") + } [1] "2025-03-26 01:53:08 MST" Installing package into '/tmp/th798/16121111/R-release/1314/library' (as 'lib' is unspecified) * installing *source* package 'data.table' ... ** package 'data.table' successfully unpacked and MD5 sums checked ** using staged installation zlib 1.2.13 is available ok * checking if R installation supports OpenMP without any extra hints... yes ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assign.c -o assign.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c between.c -o between.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bmerge.c -o bmerge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c chmatch.c -o chmatch.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cj.c -o cj.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coalesce.c -o coalesce.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dogroups.c -o dogroups.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastmean.c -o fastmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fcast.c -o fcast.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fifelse.c -o fifelse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fmelt.c -o fmelt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c forder.c -o forder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frank.c -o frank.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fread.c -o fread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c freadR.c -o freadR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c froll.c -o froll.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollR.c -o frollR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frolladaptive.c -o frolladaptive.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fsort.c -o fsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwrite.c -o fwrite.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwriteR.c -o fwriteR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsumm.c -o gsumm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c idatetime.c -o idatetime.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ijoin.c -o ijoin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c inrange.c -o inrange.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nafill.c -o nafill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c negate.c -o negate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nqrecreateindices.c -o nqrecreateindices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c openmp-utils.c -o openmp-utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c programming.c -o programming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c quickselect.c -o quickselect.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbindlist.c -o rbindlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reorder.c -o reorder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shift.c -o shift.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snprintf.c -o snprintf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c transpose.c -o transpose.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c types.c -o types.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uniqlist.c -o uniqlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c vecseq.c -o vecseq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrappers.c -o wrappers.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o data.table.so assign.o between.o bmerge.o chmatch.o cj.o coalesce.o dogroups.o fastmean.o fcast.o fifelse.o fmelt.o forder.o frank.o fread.o freadR.o froll.o frollR.o frolladaptive.o fsort.o fwrite.o fwriteR.o gsumm.o idatetime.o ijoin.o init.o inrange.o nafill.o negate.o nqrecreateindices.o openmp-utils.o programming.o quickselect.o rbindlist.o reorder.o shift.o snprintf.o subset.o transpose.o types.o uniqlist.o utils.o vecseq.o wrappers.o -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz PKG_CFLAGS = -fopenmp -I/home/th798/.conda/envs/emacs1/include PKG_LIBS = -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz if [ "data.table.so" != "data_table.so" ]; then mv data.table.so data_table.so; fi if [ "" != "Windows_NT" ] && [ `uname -s` = 'Darwin' ]; then install_name_tool -id data_table.so data_table.so; fi installing to /tmp/th798/16121111/R-release/1314/library/00LOCK-data.table/00new/data.table/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (data.table) [1] "2025-03-26 01:53:25 MST" * using log directory '/tmp/th798/16121111/R-release/1314/SHAPforxgboost.Rcheck' * using R version 4.4.3 (2025-02-28) * using platform: x86_64-pc-linux-gnu * R was compiled by gcc (Spack GCC) 12.2.0 GNU Fortran (Spack GCC) 12.2.0 * running under: Red Hat Enterprise Linux 8.10 (Ootpa) * using session charset: ASCII * checking for file 'SHAPforxgboost/DESCRIPTION' ... OK * this is package 'SHAPforxgboost' version '0.1.3' * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... OK * checking if this is a source package ... OK * checking if there is a namespace ... OK * checking for executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package 'SHAPforxgboost' can be installed ... OK * checking installed package size ... OK * checking package directory ... OK * checking 'build' directory ... OK * checking DESCRIPTION meta-information ... OK * checking top-level files ... OK * checking for left-over files ... OK * checking index information ... OK * checking package subdirectories ... OK * checking code files for non-ASCII characters ... OK * checking R files for syntax errors ... OK * checking whether the package can be loaded ... OK * checking whether the package can be loaded with stated dependencies ... OK * checking whether the package can be unloaded cleanly ... OK * checking whether the namespace can be loaded with stated dependencies ... OK * checking whether the namespace can be unloaded cleanly ... OK * checking loading without being on the library search path ... OK * checking dependencies in R code ... OK * checking S3 generic/method consistency ... OK * checking replacement functions ... OK * checking foreign function calls ... OK * checking R code for possible problems ... OK * checking Rd files ... OK * checking Rd metadata ... OK * checking Rd cross-references ... OK * checking for missing documentation entries ... OK * checking for code/documentation mismatches ... OK * checking Rd \usage sections ... OK * checking Rd contents ... OK * checking for unstated dependencies in examples ... OK * checking contents of 'data' directory ... OK * checking data for non-ASCII characters ... OK * checking LazyData ... OK * checking data for ASCII and uncompressed saves ... OK * checking installed files from 'inst/doc' ... OK * checking files in 'vignettes' ... OK * checking examples ... OK * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * checking PDF version of manual ... OK * DONE Status: OK [1] "2025-03-26 01:54:53 MST" [1] "2025-03-26 01:54:53 MST" Installing package into '/tmp/th798/16121111/R-release/1314/library' (as 'lib' is unspecified) * installing *source* package 'data.table' ... ** using staged installation zlib 1.2.13 is available ok * checking if R installation supports OpenMP without any extra hints... yes ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assign.c -o assign.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c between.c -o between.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bmerge.c -o bmerge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c chmatch.c -o chmatch.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cj.c -o cj.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coalesce.c -o coalesce.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dogroups.c -o dogroups.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastmean.c -o fastmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fcast.c -o fcast.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fifelse.c -o fifelse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fmelt.c -o fmelt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c forder.c -o forder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frank.c -o frank.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fread.c -o fread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c freadR.c -o freadR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c froll.c -o froll.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollR.c -o frollR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frolladaptive.c -o frolladaptive.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fsort.c -o fsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwrite.c -o fwrite.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwriteR.c -o fwriteR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsumm.c -o gsumm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c idatetime.c -o idatetime.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ijoin.c -o ijoin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c inrange.c -o inrange.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nafill.c -o nafill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c negate.c -o negate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nqrecreateindices.c -o nqrecreateindices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c openmp-utils.c -o openmp-utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c programming.c -o programming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c quickselect.c -o quickselect.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbindlist.c -o rbindlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reorder.c -o reorder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shift.c -o shift.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snprintf.c -o snprintf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c transpose.c -o transpose.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c types.c -o types.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uniqlist.c -o uniqlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c vecseq.c -o vecseq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrappers.c -o wrappers.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o data.table.so assign.o between.o bmerge.o chmatch.o cj.o coalesce.o dogroups.o fastmean.o fcast.o fifelse.o fmelt.o forder.o frank.o fread.o freadR.o froll.o frollR.o frolladaptive.o fsort.o fwrite.o fwriteR.o gsumm.o idatetime.o ijoin.o init.o inrange.o nafill.o negate.o nqrecreateindices.o openmp-utils.o programming.o quickselect.o rbindlist.o reorder.o shift.o snprintf.o subset.o transpose.o types.o uniqlist.o utils.o vecseq.o wrappers.o -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz PKG_CFLAGS = -fopenmp -I/home/th798/.conda/envs/emacs1/include PKG_LIBS = -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz if [ "data.table.so" != "data_table.so" ]; then mv data.table.so data_table.so; fi if [ "" != "Windows_NT" ] && [ `uname -s` = 'Darwin' ]; then install_name_tool -id data_table.so data_table.so; fi installing to /tmp/th798/16121111/R-release/1314/library/00LOCK-data.table/00new/data.table/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (data.table) [1] "2025-03-26 01:55:10 MST" * using log directory '/tmp/th798/16121111/R-release/1314/SHAPforxgboost.Rcheck' * using R version 4.4.3 (2025-02-28) * using platform: x86_64-pc-linux-gnu * R was compiled by gcc (Spack GCC) 12.2.0 GNU Fortran (Spack GCC) 12.2.0 * running under: Red Hat Enterprise Linux 8.10 (Ootpa) * using session charset: ASCII * checking for file 'SHAPforxgboost/DESCRIPTION' ... OK * this is package 'SHAPforxgboost' version '0.1.3' * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... OK * checking if this is a source package ... OK * checking if there is a namespace ... OK * checking for executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package 'SHAPforxgboost' can be installed ... OK * checking installed package size ... OK * checking package directory ... OK * checking 'build' directory ... OK * checking DESCRIPTION meta-information ... OK * checking top-level files ... OK * checking for left-over files ... OK * checking index information ... OK * checking package subdirectories ... OK * checking code files for non-ASCII characters ... OK * checking R files for syntax errors ... OK * checking whether the package can be loaded ... OK * checking whether the package can be loaded with stated dependencies ... OK * checking whether the package can be unloaded cleanly ... OK * checking whether the namespace can be loaded with stated dependencies ... OK * checking whether the namespace can be unloaded cleanly ... OK * checking loading without being on the library search path ... OK * checking dependencies in R code ... OK * checking S3 generic/method consistency ... OK * checking replacement functions ... OK * checking foreign function calls ... OK * checking R code for possible problems ... OK * checking Rd files ... OK * checking Rd metadata ... OK * checking Rd cross-references ... OK * checking for missing documentation entries ... OK * checking for code/documentation mismatches ... OK * checking Rd \usage sections ... OK * checking Rd contents ... OK * checking for unstated dependencies in examples ... OK * checking contents of 'data' directory ... OK * checking data for non-ASCII characters ... OK * checking LazyData ... OK * checking data for ASCII and uncompressed saves ... OK * checking installed files from 'inst/doc' ... OK * checking files in 'vignettes' ... OK * checking examples ... OK * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * checking PDF version of manual ... OK * DONE Status: OK [1] "2025-03-26 01:56:37 MST" > system(paste(c("diff -u", Rcheck.list), collapse=" ")) > library(data.table, lib.loc=R.home("library")) > (sig.diff.dt <- myDiff(Rvers)) Key: Empty data.table (0 rows and 3 cols): checking,master,release > > ## If there are significant differences, use git bisect to find when > ## they started. > if(nrow(sig.diff.dt)){ + dt.git <- file.path(task.dir, "data.table.git") + system(paste("cd ~/R/data.table && git fetch --tags")) + system(paste("git clone ~/R/data.table", dt.git)) + release.tag <- gsub(".tar.gz|.*_", "", cargs[["release"]]) + rev.parse.cmd <- paste( + "cd", dt.git, "&& git rev-parse master") + master.sha <- system(rev.parse.cmd, intern=TRUE) + merge.base.cmd <- paste( + "cd", dt.git, "&& git merge-base master", release.tag) + merge.base.sha <- system(merge.base.cmd, intern=TRUE) + old.sha <- merge.base.sha + run_R <- file.path(proj.dir, "install_dt_then_check_dep.R") + sig.diff.dt[, first.bad.commit := NA_character_] + sig.diff.dt[, comments := NA_character_] + for(diff.i in 1:nrow(sig.diff.dt)){ + sig.diff.row <- sig.diff.dt[diff.i] + bisect.cmd <- paste( + "cd", dt.git, "&&", + "git bisect start &&", + "git bisect old", old.sha, "&&", + "git bisect new master &&", + "git bisect run", + R.home('bin/Rscript'), + run_R, + shQuote(sig.diff.row$checking), + sig.diff.row$release, + rev.dep.release.tar.gz, + release.tag) + print(bisect.cmd) + bisect.out <- system(bisect.cmd, intern=TRUE) + cat(bisect.out,sep="\n") + if(is.null(attr(bisect.out,"status"))){ + first.bad.sha <- nc::capture_all_str( + bisect.out, + sha="[0-9a-f]+", + " is the first new commit")$sha + parent.cmd <- paste( + "cd ~/R/data.table && git log --pretty=%P -n 1", + first.bad.sha) + parent.sha <- system(parent.cmd, intern=TRUE) + sig.diff.dt[diff.i, first.bad.commit := first.bad.sha] + parent.msg <- paste0("parent=", parent.sha) + this.comment <- if(parent.sha==old.sha){ + paste(parent.msg, "same as git bisect old") + }else if(first.bad.sha==master.sha){ + paste("same as git bisect new=master,", parent.msg) + }else{ + parent.msg + } + sig.diff.dt[diff.i, comments := this.comment] + } + } + ## add CRAN column. + sig.diff.dt[, CRAN := { + flavor <- get_flavor(Rvers) + details <- data.table(flavor=unique(flavor))[, { + base <- "https://www.r-project.org/nosvn/R.check/" + u <- paste0(base, flavor, "/", rev.dep, "-00check.txt") + check.txt <- tempfile() + tryCatch({ + download.file(u, check.txt, quiet=TRUE) + }, error=function(e){ + NULL + }) + check.lines <- if(file.exists(check.txt)){ + readLines(check.txt,encoding="UTF-8") + }else{ + "" + } + repl.lines <- gsub("[\u2018\u2019]", "'", check.lines) + ##gsub("[‘’]", "'", check.lines) does not work with LC_ALL=C. + myStatus(line.vec=repl.lines) + }, by=flavor] + select.dt <- data.table(flavor, checking) + details[select.dt, msg, on=.(flavor, checking)] + }] + dir.create(file.path(job.dir, Rvers)) + diffs.csv <- file.path(job.dir, Rvers, "significant_differences.csv") + data.table::fwrite(sig.diff.dt, diffs.csv) + print(sig.diff.dt) + } >