File: test_DelayedMatrix-utils.R

package info (click to toggle)
r-bioc-delayedarray 0.24.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,480 kB
  • sloc: ansic: 727; makefile: 2
file content (194 lines) | stat: -rw-r--r-- 7,165 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
#setAutoRealizationBackend("RleArray")
#setAutoRealizationBackend("HDF5Array")

Arith_members <- c("+", "-", "*", "/", "^", "%%", "%/%")
Compare_members <- c("==", "!=", "<=", ">=", "<", ">")
Logic_members <- c("&", "|")  # currently untested

a1 <- array(sample(5L, 150, replace=TRUE), c(5, 10, 3))  # integer array
a2 <- a1 + runif(150) - 0.5                              # numeric array
m2 <- matrix(runif(60), ncol=6)                          # numeric matrix

block_sizes1 <- c(12L, 20L, 50L, 15000L)
block_sizes2 <- 2L * block_sizes1

test_DelayedMatrix_Ops <- function()
{
    test_delayed_Ops_on_matrix <- function(.Generic, m, M) {
        GENERIC <- match.fun(.Generic)

        target_current <- list(
            list(GENERIC(m, m[ , 1]), GENERIC(M, M[ , 1])),
            list(GENERIC(m[ , 2], m), GENERIC(M[ , 2], M))
        )
        for (i in seq_along(target_current)) {
            target <- target_current[[i]][[1L]]
            current <- target_current[[i]][[2L]]
            checkIdentical(target, as.matrix(current))
            checkIdentical(t(target), as.matrix(t(current)))
            checkIdentical(target[-2, 8:5], as.matrix(current[-2, 8:5]))
            checkIdentical(t(target[-2, 8:5]), as.matrix(t(current[-2, 8:5])))
            checkIdentical(target[-2, 0], as.matrix(current[-2, 0]))
            checkIdentical(t(target[-2, 0]), as.matrix(t(current[-2, 0])))
            checkIdentical(target[0, ], as.matrix(current[0, ]))
            checkIdentical(t(target[0, ]), as.matrix(t(current[0, ])))
        }

        target_current <- list(
            list(GENERIC(t(m), 8:-1), GENERIC(t(M), 8:-1)),
            list(GENERIC(8:-1, t(m)), GENERIC(8:-1, t(M))),

            list(GENERIC(t(m), m[1 , ]), GENERIC(t(M), M[1 , ])),
            list(GENERIC(m[2 , ], t(m)), GENERIC(M[2 , ], t(M))),

            list(GENERIC(t(m), m[1 , 6:10]), GENERIC(t(M), M[1 , 6:10])),
            list(GENERIC(m[2 , 8:7], t(m)), GENERIC(M[2 , 8:7], t(M)))
        )
        for (i in seq_along(target_current)) {
            target <- target_current[[i]][[1L]]
            current <- target_current[[i]][[2L]]
            checkIdentical(target, as.matrix(current))
            checkIdentical(target[1:3 , ], as.matrix(current[1:3 , ]))
            checkIdentical(target[ , 1:3], as.matrix(current[ , 1:3]))
            checkIdentical(t(target), as.matrix(t(current)))
            checkIdentical(t(target)[1:3 , ], as.matrix(t(current)[1:3 , ]))
            checkIdentical(t(target)[ , 1:3], as.matrix(t(current)[ , 1:3]))
            checkIdentical(target[8:5, -2], as.matrix(current[8:5, -2]))
            checkIdentical(t(target[8:5, -2]), as.matrix(t(current[8:5, -2])))
            checkIdentical(target[0, -2], as.matrix(current[0, -2]))
            checkIdentical(t(target[0, -2]), as.matrix(t(current[0, -2])))
            checkIdentical(target[ , 0], as.matrix(current[ , 0]))
            checkIdentical(t(target[ , 0]), as.matrix(t(current[ , 0])))
        }
    }

    a <- a2
    a[2, 9, 2] <- NA  # same as a[[92]] <- NA

    toto <- function(x) t((5 * x[ , 1:2] ^ 3 + 1L) * log(x)[, 10:9])[ , -1]

    m <- a[ , , 2]
    M <- realize(m)
    checkIdentical(toto(m), as.array(toto(M)))
    ## "Logic" members currently untested.
    for (.Generic in c(Arith_members, Compare_members))
        test_delayed_Ops_on_matrix(.Generic, m, M)

    M <- realize(a)[ , , 2]
    checkIdentical(toto(m), as.array(toto(M)))
    for (.Generic in c(Arith_members, Compare_members))
        test_delayed_Ops_on_matrix(.Generic, m, M)
}

test_DelayedMatrix_mult <- function()
{
    m <- m2
    m[2, 4] <- NA
    m[5, 4] <- Inf
    m[6, 3] <- -Inf
    M <- realize(m)

    # These two need to be smaller than 'M' to test both schemes.
    Lm <- rbind(rep(1L, 10), rep(c(1L, 0L), 5), rep(-100L, 10))
    Rm <- rbind(Lm + 7.05, 0.1 * Lm)[,1:5]

    on.exit(suppressMessages(setAutoBlockSize()))
    for (block_size in block_sizes2) {
        suppressMessages(setAutoBlockSize(block_size))

        P <- Lm %*% M
        checkEquals(Lm %*% m, as.matrix(P))
        P <- M %*% Rm
        checkEquals(m %*% Rm, as.matrix(P))

        P <- crossprod(t(Lm), M)
        checkEquals(crossprod(t(Lm), m), as.matrix(P))
        P <- tcrossprod(M, t(Rm))
        checkEquals(tcrossprod(m, t(Rm)), as.matrix(P))
    }

    # Handles sparse inputs.
    s <- Matrix::rsparsematrix(nrow(m2), ncol(m2), density=0.2)
    S <- DelayedArray(s)

    for (block_size in block_sizes2) {
        suppressMessages(setAutoBlockSize(block_size))

        P <- Lm %*% S 
        checkEquals(unname(as.matrix(Lm %*% s)), as.matrix(P))
        P <- S %*% Rm
        checkEquals(unname(as.matrix(s %*% Rm)), as.matrix(P))

        P <- crossprod(t(Lm), S)
        checkEquals(unname(as.matrix(crossprod(t(Lm), s))), as.matrix(P))
        P <- tcrossprod(S, t(Rm))
        checkEquals(unname(as.matrix(tcrossprod(s, t(Rm)))), as.matrix(P))
    }

    # Handles two DelayedMatrices being multiplied togehter.
    y1 <- matrix(runif(100), ncol=5)
    y2 <- matrix(runif(100), nrow=5)
    Y1 <- DelayedArray(y1)
    Y2 <- DelayedArray(y2)
    ref <- y1 %*% y2

    for (block_size in block_sizes2) {
        suppressMessages(setAutoBlockSize(block_size))
        out <- Y1 %*% Y2
        checkEquals(ref, as.matrix(out))
        out <- crossprod(t(Y1), Y2)
        checkEquals(ref, as.matrix(out))
        out <- tcrossprod(Y1, t(Y2))
        checkEquals(ref, as.matrix(out))
    }

    # Throws errors correctly.
    checkException(Lm[,1,drop=FALSE] %*% m, msg="non-conformable")
}

test_DelayedMatrix_crossprod_self <- function()
{
    M <- DelayedArray(m2)

    # Checking self-product in a core-agnostic way. 
    on.exit(suppressMessages(setAutoBlockSize()))
    for (block_size in block_sizes2) {
        suppressMessages(setAutoBlockSize(block_size))
        checkEquals(as.matrix(crossprod(M)), crossprod(m2))
        checkEquals(as.matrix(tcrossprod(M)), tcrossprod(m2))
    }

    # Checking self-product in a non-core-agnostic way. 
    DelayedArray:::setAutoMultParallelAgnostic(FALSE)
    on.exit(DelayedArray:::setAutoMultParallelAgnostic())
    for (block_size in block_sizes2) {
        suppressMessages(setAutoBlockSize(block_size))
        checkEquals(as.matrix(crossprod(M)), crossprod(m2))
        checkEquals(as.matrix(tcrossprod(M)), tcrossprod(m2))
    }
}

test_DelayedMatrix_mult_parallel <- function()
{
    setAutoBPPARAM(BiocParallel::SnowParam(2))
    on.exit(setAutoBPPARAM())
    suppressMessages(setAutoBlockSize(10000))
    on.exit(suppressMessages(setAutoBlockSize()), add=TRUE)

    M <- DelayedArray(m2)
    Lm <- matrix(runif(20), ncol=10)
    Rm <- matrix(runif(12), nrow=6)

    P <- Lm %*% M
    checkEquals(Lm %*% m2, as.matrix(P))
    P <- M %*% Rm
    checkEquals(m2 %*% Rm, as.matrix(P))

    checkEquals(as.matrix(crossprod(M)), crossprod(m2))
    checkEquals(as.matrix(tcrossprod(M)), tcrossprod(m2))

    DelayedArray:::setAutoMultParallelAgnostic(FALSE)
    on.exit(DelayedArray:::setAutoMultParallelAgnostic(), add=TRUE)
    checkEquals(as.matrix(crossprod(M)), crossprod(m2))
    checkEquals(as.matrix(tcrossprod(M)), tcrossprod(m2))
}