Last updated on 2025-08-29 23:52:14 CEST.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 1.1 | 8.96 | 165.00 | 173.96 | OK | |
r-devel-linux-x86_64-debian-gcc | 1.1 | 8.22 | 143.37 | 151.59 | OK | |
r-devel-linux-x86_64-fedora-clang | 1.1 | 290.01 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 1.1 | 272.01 | OK | |||
r-devel-windows-x86_64 | 1.1 | 13.00 | 109.00 | 122.00 | ERROR | |
r-patched-linux-x86_64 | 1.1 | 10.29 | 160.28 | 170.57 | OK | |
r-release-linux-x86_64 | 1.1 | 9.78 | 158.55 | 168.33 | OK | |
r-release-macos-arm64 | 1.1 | 79.00 | OK | |||
r-release-macos-x86_64 | 1.1 | 156.00 | OK | |||
r-release-windows-x86_64 | 1.1 | 12.00 | 151.00 | 163.00 | OK | |
r-oldrel-macos-arm64 | 1.1 | 88.00 | OK | |||
r-oldrel-macos-x86_64 | 1.1 | 172.00 | OK | |||
r-oldrel-windows-x86_64 | 1.1 | 16.00 | 135.00 | 151.00 | ERROR |
Version: 1.1
Check: examples
Result: ERROR
Running examples in 'shrinkGPR-Ex.R' failed
The error most likely occurred in:
> ### Name: kernel_functions
> ### Title: Kernel Functions for Gaussian Processes
> ### Aliases: kernel_functions kernel_se kernel_matern_12 kernel_matern_32
> ### kernel_matern_52
>
> ### ** Examples
>
> if (torch::torch_is_installed()) {
+ # Example inputs
+ torch::torch_manual_seed(123)
+ n_latent <- 3
+ d <- 2
+ N <- 5
+ thetas <- torch::torch_randn(n_latent, d)$abs()
+ tau <- torch::torch_randn(n_latent)$abs()
+ x <- torch::torch_randn(N, d)
+
+ # Compute the SE kernel
+ K_se <- kernel_se(thetas, tau, x)
+ print(K_se)
+
+ # Compute the Matérn 3/2 kernel
+ K_matern32 <- kernel_matern_32(thetas, tau, x)
+ print(K_matern32)
+
+ # Compute the Matérn 5/2 kernel with x_star
+ x_star <- torch::torch_randn(3, d)
+ K_matern52 <- kernel_matern_52(thetas, tau, x, x_star)
+ print(K_matern52)
+ }
Flavors: r-devel-windows-x86_64, r-oldrel-windows-x86_64
Version: 1.1
Check: tests
Result: ERROR
Running 'testthat.R' [3s]
Running the tests in 'tests/testthat.R' failed.
Complete output:
> # This file is part of the standard setup for testthat.
> # It is recommended that you do not modify it.
> #
> # Where should you do additional test configuration?
> # Learn more about the roles of various files in:
> # * https://r-pkgs.org/testing-design.html#sec-tests-files-overview
> # * https://testthat.r-lib.org/articles/special-files.html
>
> library(testthat)
> library(shrinkGPR)
Welcome to shrinkGPR version 1.1.
NOTE: No CUDA installation detected. This may be quite slow for larger datasets.
Consider installing CUDA for GPU acceleration. Information on this can be found at:
https://cran.r-project.org/web/packages/torch/vignettes/installation.html
>
> test_check("shrinkGPR")
Flavor: r-devel-windows-x86_64
Version: 1.1
Check: tests
Result: ERROR
Running 'testthat.R' [4s]
Running the tests in 'tests/testthat.R' failed.
Complete output:
> # This file is part of the standard setup for testthat.
> # It is recommended that you do not modify it.
> #
> # Where should you do additional test configuration?
> # Learn more about the roles of various files in:
> # * https://r-pkgs.org/testing-design.html#sec-tests-files-overview
> # * https://testthat.r-lib.org/articles/special-files.html
>
> library(testthat)
> library(shrinkGPR)
Welcome to shrinkGPR version 1.1.
NOTE: No CUDA installation detected. This may be quite slow for larger datasets.
Consider installing CUDA for GPU acceleration. Information on this can be found at:
https://cran.r-project.org/web/packages/torch/vignettes/installation.html
>
> test_check("shrinkGPR")
Flavor: r-oldrel-windows-x86_64
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.