Last updated on 2020-02-15 01:01:24 CET.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.2-3 | 88.70 | 74.90 | 163.60 | OK | |
r-devel-linux-x86_64-debian-gcc | 0.2-3 | 75.16 | 59.05 | 134.21 | OK | |
r-devel-linux-x86_64-fedora-clang | 0.2-3 | 229.49 | NOTE | |||
r-devel-linux-x86_64-fedora-gcc | 0.2-3 | 221.75 | OK | |||
r-devel-windows-ix86+x86_64 | 0.2-3 | 166.00 | 151.00 | 317.00 | NOTE | |
r-devel-windows-ix86+x86_64-gcc8 | 0.2-3 | 193.00 | 197.00 | 390.00 | NOTE | |
r-patched-linux-x86_64 | 0.2-3 | 79.39 | 67.57 | 146.96 | OK | |
r-patched-solaris-x86 | 0.2-3 | 10950.60 | ERROR | |||
r-release-linux-x86_64 | 0.2-3 | 81.25 | 67.12 | 148.37 | OK | |
r-release-windows-ix86+x86_64 | 0.2-3 | 168.00 | 147.00 | 315.00 | NOTE | |
r-release-osx-x86_64 | 0.2-3 | WARN | ||||
r-oldrel-windows-ix86+x86_64 | 0.2-2 | 142.00 | 123.00 | 265.00 | NOTE | |
r-oldrel-osx-x86_64 | 0.2-3 | ERROR |
Version: 0.2-3
Check: installed package size
Result: NOTE
installed size is 12.3Mb
sub-directories of 1Mb or more:
libs 11.3Mb
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-windows-ix86+x86_64, r-devel-windows-ix86+x86_64-gcc8, r-release-windows-ix86+x86_64, r-release-osx-x86_64
Version: 0.2-3
Check: examples
Result: ERROR
Running examples in ‘float-Ex.R’ failed
The error most likely occurred in:
> ### Name: eigen
> ### Title: eigen
> ### Aliases: eigen eigen,float32-method
>
> ### ** Examples
>
> library(float)
>
> s = flrunif(10, 3)
> cp = crossprod(s)
>
> eigen(cp)
Flavor: r-patched-solaris-x86
Version: 0.2-3
Check: tests
Result: ERROR
Running ‘arithmetic.r’
Running ‘backsolve.r’
Running ‘bind.r’
Running ‘c.r’
Running ‘chol.r’
Running ‘chol2inv.r’
Running ‘colSums.r’
Running ‘comparison.r’
Running ‘cond.r’ [31m/36m]
Running ‘crossprod.r’
Running ‘diag.r’
Running ‘eigen.r’ [31m/41m]
Running ‘extremes.r’
Running ‘isSymmetric.r’
Running ‘math.r’
Running ‘matmult.r’
Running ‘na.r’
Running ‘norm.r’ [30m/37m]
Running ‘print.r’
Running ‘qr.r’ [31m/37m]
Running ‘rand.r’
Running ‘rep.r’
Running ‘scale.r’
Running ‘sign.r’
Running ‘solve.r’ [0m/29m]
Running ‘sum.r’
Running ‘svd.r’
Running the tests in ‘tests/cond.r’ failed.
Complete output:
> suppressPackageStartupMessages(library(float))
> set.seed(1234)
>
> tol = 1e-4
> m = 10
> n = 3
>
> x = matrix(stats::rnorm(m*n), m, n)
> s = fl(x)
>
> type = "O"
> test = dbl(rcond(s, type))
Running the tests in ‘tests/eigen.r’ failed.
Complete output:
> suppressPackageStartupMessages(library(float))
> set.seed(1234)
>
> tol = 1e-6
>
> m = 10
> n = 3
>
> s = flrnorm(m, n)
> cp_s = crossprod(s)
> cp_d = dbl(cp_s)
>
> test = eigen(cp_s, symmetric=TRUE, only.values=TRUE)
Running the tests in ‘tests/norm.r’ failed.
Complete output:
> suppressPackageStartupMessages(library(float))
> set.seed(1234)
>
> tol = 1e-6
> m = 10
> n = 3
>
> x = matrix(stats::rnorm(m*n), m, n)
> s = fl(x)
>
> type = "O"
> test = dbl(norm(s, type))
> truth = norm(x, type)
> stopifnot(all.equal(test, truth, tol=tol))
>
> type = "I"
> test = dbl(norm(s, type))
> truth = norm(x, type)
> stopifnot(all.equal(test, truth, tol=tol))
>
> type = "F"
> test = dbl(norm(s, type))
> truth = norm(x, type)
> stopifnot(all.equal(test, truth, tol=tol))
>
> type = "M"
> test = dbl(norm(s, type))
> truth = norm(x, type)
> stopifnot(all.equal(test, truth, tol=tol))
>
> type = "2"
> test = dbl(norm(s, type))
Running the tests in ‘tests/qr.r’ failed.
Complete output:
> suppressPackageStartupMessages(library(float))
> set.seed(1234)
>
> tol = 1e-6
>
> cmp = function(qr_x, qr_xs)
+ {
+ test = dbl(qr.R(qr_xs))
+ truth = qr.R(qr_x)
+ stopifnot(all.equal(test, truth, tol=tol))
+
+ test = dbl(qr.Q(qr_xs))
+ truth = qr.Q(qr_x)
+ stopifnot(all.equal(test, truth, tol=tol))
+
+ test = dbl(qr.R(qr_xs, complete=TRUE))
+ truth = qr.R(qr_x, complete=TRUE)
+ stopifnot(all.equal(test, truth, tol=tol))
+
+ test = dbl(qr.Q(qr_xs, complete=TRUE))
+ truth = qr.Q(qr_x, complete=TRUE)
+ stopifnot(all.equal(test, truth, tol=tol))
+ }
>
>
> # m > n
> x = matrix(stats::rnorm(30), 10)
> xs = fl(x)
> qr_x = qr(x, LAPACK=TRUE)
> qr_xs = qr(xs)
Running the tests in ‘tests/solve.r’ failed.
Complete output:
> suppressPackageStartupMessages(library(float))
> set.seed(1234)
>
> tol = 1e-6
>
> x = crossprod(matrix(stats::rnorm(30), 10))
> xs = fl(x)
> y = 1:3
> ys = fl(y)
>
> solve_xy = solve(x, y)
>
>
>
> test = dbl(solve(xs))
Flavor: r-patched-solaris-x86
Version: 0.2-3
Check: whether package can be installed
Result: WARN
Found the following significant warnings:
WARNING: shared objects/dynamic libraries with hard-coded temporary installation paths
Flavor: r-release-osx-x86_64
Version: 0.2-2
Check: installed package size
Result: NOTE
installed size is 9.1Mb
sub-directories of 1Mb or more:
libs 8.2Mb
Flavor: r-oldrel-windows-ix86+x86_64
Version: 0.2-3
Check: whether package can be installed
Result: ERROR
Installation failed.
Flavor: r-oldrel-osx-x86_64