Last updated on 2019-05-01 01:51:46 CEST.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.2-2 | 83.51 | 71.31 | 154.82 | OK | |
r-devel-linux-x86_64-debian-gcc | 0.2-2 | 13.90 | 55.62 | 69.52 | OK | |
r-devel-linux-x86_64-fedora-clang | 0.2-2 | 210.01 | NOTE | |||
r-devel-linux-x86_64-fedora-gcc | 0.2-2 | 208.04 | OK | |||
r-patched-linux-x86_64 | 0.2-2 | 16.36 | 69.78 | 86.14 | OK | |
r-patched-solaris-x86 | 0.2-2 | 10469.10 | ERROR | |||
r-release-linux-x86_64 | 0.2-2 | 84.66 | 69.09 | 153.75 | OK | |
r-release-windows-ix86+x86_64 | 0.2-2 | 262.00 | 149.00 | 411.00 | NOTE | |
r-release-osx-x86_64 | 0.2-2 | WARN | ||||
r-oldrel-windows-ix86+x86_64 | 0.2-2 | 142.00 | 123.00 | 265.00 | NOTE | |
r-oldrel-osx-x86_64 | 0.2-2 | NOTE |
Version: 0.2-2
Check: installed package size
Result: NOTE
installed size is 11.6Mb
sub-directories of 1Mb or more:
libs 10.7Mb
Flavors: r-devel-linux-x86_64-fedora-clang, r-release-windows-ix86+x86_64, r-release-osx-x86_64, r-oldrel-windows-ix86+x86_64, r-oldrel-osx-x86_64
Version: 0.2-2
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-2
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/38m]
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’ [31m/38m]
Running ‘print.r’
Running ‘qr.r’ [31m/40m]
Running ‘rand.r’
Running ‘rep.r’
Running ‘scale.r’
Running ‘sign.r’
Running ‘solve.r’ [17m/22m]
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-2
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