Last updated on 2025-07-17 04:54:56 CEST.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.15.1 | 760.71 | 347.96 | 1108.67 | OK | |
r-devel-linux-x86_64-debian-gcc | 0.15.1 | 624.33 | 238.45 | 862.78 | OK | |
r-devel-linux-x86_64-fedora-clang | 0.15.1 | 1643.59 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 0.15.1 | 2124.86 | OK | |||
r-devel-windows-x86_64 | 0.15.1 | 823.00 | 540.00 | 1363.00 | OK | |
r-patched-linux-x86_64 | 0.15.1 | 902.80 | 326.14 | 1228.94 | OK | |
r-release-linux-x86_64 | 0.15.1 | 886.62 | 326.39 | 1213.01 | OK | |
r-release-macos-arm64 | 0.15.1 | 334.00 | OK | |||
r-release-macos-x86_64 | 0.15.1 | 690.00 | OK | |||
r-release-windows-x86_64 | 0.15.1 | 951.00 | 0.00 | 951.00 | FAIL | |
r-oldrel-macos-arm64 | 0.15.1 | 380.00 | NOTE | |||
r-oldrel-macos-x86_64 | 0.15.1 | 715.00 | NOTE | |||
r-oldrel-windows-x86_64 | 0.15.1 | 688.00 | 601.00 | 1289.00 | NOTE |
Version: 0.15.1
Check: examples
Result: FAIL
Check process probably crashed or hung up for 20 minutes ... killed
Most likely this happened in the example checks (?),
if not, ignore the following last lines of example output:
>
> ### Name: nn_nll_loss
> ### Title: Nll loss
> ### Aliases: nn_nll_loss
>
> ### ** Examples
>
> if (torch_is_installed()) {
+ m <- nn_log_softmax(dim = 2)
+ loss <- nn_nll_loss()
+ # input is of size N x C = 3 x 5
+ input <- torch_randn(3, 5, requires_grad = TRUE)
+ # each element in target has to have 0 <= value < C
+ target <- torch_tensor(c(2, 1, 5), dtype = torch_long())
+ output <- loss(m(input), target)
+ output$backward()
+
+ # 2D loss example (used, for example, with image inputs)
+ N <- 5
+ C <- 4
+ loss <- nn_nll_loss()
+ # input is of size N x C x height x width
+ data <- torch_randn(N, 16, 10, 10)
+ conv <- nn_conv2d(16, C, c(3, 3))
+ m <- nn_log_softmax(dim = 1)
+ # each element in target has to have 0 <= value < C
+ target <- torch_empty(N, 8, 8, dtype = torch_long())$random_(1, C)
+ output <- loss(m(conv(data)), target)
+ output$backward()
+ }
======== End of example output (where/before crash/hang up occured ?) ========
Flavor: r-release-windows-x86_64
Version: 0.15.1
Check: installed package size
Result: NOTE
installed size is 222.9Mb
sub-directories of 1Mb or more:
R 6.2Mb
help 1.7Mb
include 1.9Mb
libs 212.5Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64