Last updated on 2019-01-15 00:46:49 CET.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.5.1 | 95.06 | 148.96 | 244.02 | WARN | |
r-devel-linux-x86_64-debian-gcc | 0.5.1 | 86.70 | 117.22 | 203.92 | WARN | |
r-devel-linux-x86_64-fedora-clang | 0.5.1 | 324.24 | WARN | |||
r-devel-linux-x86_64-fedora-gcc | 0.5.1 | 305.84 | WARN | |||
r-devel-windows-ix86+x86_64 | 0.5.1 | 195.00 | 339.00 | 534.00 | ERROR | |
r-patched-linux-x86_64 | 0.5.1 | 102.20 | 134.86 | 237.06 | WARN | |
r-patched-solaris-x86 | 0.5.1 | 1134.00 | NOTE | |||
r-release-linux-x86_64 | 0.5.1 | 108.79 | 131.83 | 240.62 | WARN | |
r-release-windows-ix86+x86_64 | 0.5.1 | 253.00 | 239.00 | 492.00 | NOTE | |
r-release-osx-x86_64 | 0.5.1 | NOTE | ||||
r-oldrel-windows-ix86+x86_64 | 0.5.1 | 188.00 | 243.00 | 431.00 | NOTE | |
r-oldrel-osx-x86_64 | 0.5.1 | NOTE |
Version: 0.5.1
Check: whether package can be installed
Result: WARN
Found the following significant warnings:
GloveFitter.cpp:80:7: warning: explicitly assigning value of variable of type 'GloveFit' to itself [-Wself-assign-overloaded]
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-fedora-clang
Version: 0.5.1
Check: for GNU extensions in Makefiles
Result: NOTE
GNU make is a SystemRequirements.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-ix86+x86_64, r-patched-linux-x86_64, r-patched-solaris-x86, r-release-linux-x86_64, r-release-windows-ix86+x86_64, r-release-osx-x86_64, r-oldrel-windows-ix86+x86_64, r-oldrel-osx-x86_64
Version: 0.5.1
Check: whether package can be installed
Result: WARN
Found the following significant warnings:
/home/hornik/tmp/R.check/r-devel-gcc/Work/build/Packages/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: ‘void* realloc(void*, size_t)’ moving an object of non-trivially copyable type ‘struct std::pair<const std::pair<unsigned int, unsigned int>, int>’; use ‘new’ and ‘delete’ instead [-Wclass-memaccess]
/home/hornik/tmp/R.check/r-devel-gcc/Work/build/Packages/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: ‘void* realloc(void*, size_t)’ moving an object of non-trivially copyable type ‘struct std::pair<const std::pair<unsigned int, unsigned int>, float>’; use ‘new’ and ‘delete’ instead [-Wclass-memaccess]
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.5.1
Check: installed package size
Result: NOTE
installed size is 12.4Mb
sub-directories of 1Mb or more:
data 2.7Mb
doc 3.6Mb
libs 5.5Mb
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-windows-ix86+x86_64, r-patched-solaris-x86, r-release-windows-ix86+x86_64, r-release-osx-x86_64, r-oldrel-windows-ix86+x86_64, r-oldrel-osx-x86_64
Version: 0.5.1
Check: dependencies in R code
Result: NOTE
Namespace in Imports field not imported from: ‘irlba’
All declared Imports should be used.
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-patched-solaris-x86, r-release-osx-x86_64, r-oldrel-osx-x86_64
Version: 0.5.1
Check: whether package can be installed
Result: WARN
Found the following significant warnings:
/data/gannet/ripley/R/test-3.6/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: ‘void* realloc(void*, size_t)’ moving an object of non-trivially copyable type ‘struct std::pair<const std::pair<unsigned int, unsigned int>, int>’; use ‘new’ and ‘delete’ instead [-Wclass-memaccess]
/data/gannet/ripley/R/test-3.6/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: ‘void* realloc(void*, size_t)’ moving an object of non-trivially copyable type ‘struct std::pair<const std::pair<unsigned int, unsigned int>, float>’; use ‘new’ and ‘delete’ instead [-Wclass-memaccess]
Flavor: r-devel-linux-x86_64-fedora-gcc
Version: 0.5.1
Check: running examples for arch ‘i386’
Result: ERROR
Running examples in 'text2vec-Ex.R' failed
The error most likely occurred in:
> ### Name: itoken
> ### Title: Iterators (and parallel iterators) over input objects
> ### Aliases: itoken itoken.list itoken.character itoken.iterator
> ### itoken_parallel itoken_parallel.character
> ### itoken_parallel.ifiles_parallel itoken_parallel.list
>
> ### ** Examples
>
> data("movie_review")
> txt = movie_review$review[1:100]
> ids = movie_review$id[1:100]
> it = itoken(txt, tolower, word_tokenizer, n_chunks = 10)
> it = itoken(txt, tolower, word_tokenizer, n_chunks = 10, ids = ids)
> # Example of stemming tokenizer
> # stem_tokenizer =function(x) {
> # lapply(word_tokenizer(x), SnowballC::wordStem, language="en")
> # }
> #------------------------------------------------
> # PARALLEL iterators
> #------------------------------------------------
> library(text2vec)
>
> N_WORKERS = 1 # change 1 to number of cores in parallel backend
> if(require(doParallel)) registerDoParallel(N_WORKERS)
Loading required package: doParallel
Loading required package: foreach
Loading required package: iterators
Loading required package: parallel
> data("movie_review")
> it = itoken_parallel(movie_review$review[1:100], n_chunks = N_WORKERS)
> system.time(dtm <- create_dtm(it, hash_vectorizer(2**16), type = 'dgTMatrix'))
user system elapsed
0.01 0.00 2.86
>
>
>
> cleanEx()
detaching 'package:doParallel', 'package:parallel',
'package:iterators', 'package:foreach'
Error: connections left open:
<-CRANwin.fb05.statistik.uni-dortmund.de:11355 (sockconn)
Execution halted
Flavor: r-devel-windows-ix86+x86_64
Version: 0.5.1
Check: running examples for arch ‘x64’
Result: ERROR
Running examples in 'text2vec-Ex.R' failed
The error most likely occurred in:
> ### Name: itoken
> ### Title: Iterators (and parallel iterators) over input objects
> ### Aliases: itoken itoken.list itoken.character itoken.iterator
> ### itoken_parallel itoken_parallel.character
> ### itoken_parallel.ifiles_parallel itoken_parallel.list
>
> ### ** Examples
>
> data("movie_review")
> txt = movie_review$review[1:100]
> ids = movie_review$id[1:100]
> it = itoken(txt, tolower, word_tokenizer, n_chunks = 10)
> it = itoken(txt, tolower, word_tokenizer, n_chunks = 10, ids = ids)
> # Example of stemming tokenizer
> # stem_tokenizer =function(x) {
> # lapply(word_tokenizer(x), SnowballC::wordStem, language="en")
> # }
> #------------------------------------------------
> # PARALLEL iterators
> #------------------------------------------------
> library(text2vec)
>
> N_WORKERS = 1 # change 1 to number of cores in parallel backend
> if(require(doParallel)) registerDoParallel(N_WORKERS)
Loading required package: doParallel
Loading required package: foreach
Loading required package: iterators
Loading required package: parallel
> data("movie_review")
> it = itoken_parallel(movie_review$review[1:100], n_chunks = N_WORKERS)
> system.time(dtm <- create_dtm(it, hash_vectorizer(2**16), type = 'dgTMatrix'))
user system elapsed
0.04 0.00 3.18
>
>
>
> cleanEx()
detaching 'package:doParallel', 'package:parallel',
'package:iterators', 'package:foreach'
Error: connections left open:
<-CRANwin.fb05.statistik.uni-dortmund.de:11405 (sockconn)
Execution halted
Flavor: r-devel-windows-ix86+x86_64
Version: 0.5.1
Check: whether package can be installed
Result: WARN
Found the following significant warnings:
/home/hornik/tmp/R.check/r-patched-gcc/Work/build/Packages/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: ‘void* realloc(void*, size_t)’ moving an object of non-trivially copyable type ‘struct std::pair<const std::pair<unsigned int, unsigned int>, int>’; use ‘new’ and ‘delete’ instead [-Wclass-memaccess]
/home/hornik/tmp/R.check/r-patched-gcc/Work/build/Packages/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: ‘void* realloc(void*, size_t)’ moving an object of non-trivially copyable type ‘struct std::pair<const std::pair<unsigned int, unsigned int>, float>’; use ‘new’ and ‘delete’ instead [-Wclass-memaccess]
Flavor: r-patched-linux-x86_64
Version: 0.5.1
Check: whether package can be installed
Result: WARN
Found the following significant warnings:
/home/hornik/tmp/R.check/r-release-gcc/Work/build/Packages/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: ‘void* realloc(void*, size_t)’ moving an object of non-trivially copyable type ‘struct std::pair<const std::pair<unsigned int, unsigned int>, int>’; use ‘new’ and ‘delete’ instead [-Wclass-memaccess]
/home/hornik/tmp/R.check/r-release-gcc/Work/build/Packages/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: ‘void* realloc(void*, size_t)’ moving an object of non-trivially copyable type ‘struct std::pair<const std::pair<unsigned int, unsigned int>, float>’; use ‘new’ and ‘delete’ instead [-Wclass-memaccess]
Flavor: r-release-linux-x86_64