Authors: Koki Tsuyuzaki [aut, cre]
Last modified: 2023-10-20 14:48:21.036969
Compiled: Tue Oct 24 19:01:17 2023

1 Setting

suppressPackageStartupMessages(library("DelayedTensor"))
suppressPackageStartupMessages(library("DelayedArray"))
suppressPackageStartupMessages(library("HDF5Array"))
suppressPackageStartupMessages(library("DelayedRandomArray"))

darr1 <- RandomUnifArray(c(2,3,4))
darr2 <- RandomUnifArray(c(2,3,4))

There are several settings in DelayedTensor.

First, the sparsity of the intermediate DelayedArray objects calculated inside DelayedTensor is set by setSparse.

Note that the sparse mode is experimental.

Whether it contributes to higher speed and lower memory is quite dependent on the sparsity of the DelayedArray, and the current implementation does not recognize the block size, which may cause out-of-memory errors, when the data is extremely huge.

Here, we specify as.sparse as FALSE (this is also the default value for now).

DelayedTensor::setSparse(as.sparse=FALSE)

Next, the verbose message is suppressed by setVerbose. This is useful when we want to monitor the calculation process.

Here we specify as.verbose as FALSE (this is also the default value for now).

DelayedTensor::setVerbose(as.verbose=FALSE)

The block size of block processing is specified by setAutoBlockSize. When the sparse mode is off, all the functions of DelayedTensor are performed as block processing, in which each block vector/matrix/tensor is expanded to memory space from on-disk file incrementally so as not to exceed the specified size.

Here, we specify the block size as 1E+8.

setAutoBlockSize(size=1E+8)
## automatic block size set to 1e+08 bytes (was 1e+08)

Finally, the temporal directory to store the intermediate HDF5 files during running DelayedTensor is specified by setHDF5DumpDir.

Note that in many systems the /var directory has the storage limitation, so if there is no enough space, user should specify the other directory.

# tmpdir <- paste(sample(c(letters,1:9), 10), collapse="")
# dir.create(tmpdir, recursive=TRUE))
tmpdir <- tempdir()
setHDF5DumpDir(tmpdir)

These specified values are also extracted by each getter function.

DelayedTensor::getSparse()
## $delayedtensor.sparse
## [1] FALSE
DelayedTensor::getVerbose()
## $delayedtensor.verbose
## [1] FALSE
getAutoBlockSize()
## [1] 1e+08
getHDF5DumpDir()
## [1] "/tmp/RtmpUw4Z98"

2 Tensor Arithmetic Operations

2.1 Unfold/Fold Operations

Unfold (a.k.a. matricizing) operations are used to reshape a tensor into a matrix.

Figure 1: Unfold/Fold Operasions

In unfold, row_idx and col_idx are specified to set which modes are used as the row/column.

dmat1 <- DelayedTensor::unfold(darr1, row_idx=c(1,2), col_idx=3)
dmat1
## <6 x 4> HDF5Matrix object of type "double":
##             [,1]        [,2]        [,3]        [,4]
## [1,] 0.001969617 0.438436867 0.839511983 0.033507233
## [2,] 0.635680038 0.825731201 0.354772018 0.496269759
## [3,] 0.612269619 0.772060040 0.011919614 0.474478387
## [4,] 0.670009171 0.079409711 0.654069155 0.892943499
## [5,] 0.029126482 0.973396131 0.711450663 0.512219296
## [6,] 0.670539671 0.639858515 0.652427071 0.271433232

fold is the inverse operation of unfold, which is used to reshape a matrix into a tensor.

In fold, row_idx/col_idx are specified to set which modes correspond the row/column of the output tensor and modes is specified to set the mode of the output tensor.

dmat1_to_darr1 <- DelayedTensor::fold(dmat1,
    row_idx=c(1,2), col_idx=3, modes=dim(darr1))
dmat1_to_darr1
## <2 x 3 x 4> DelayedArray object of type "double":
## ,,1
##             [,1]        [,2]        [,3]
## [1,] 0.001969617 0.612269619 0.029126482
## [2,] 0.635680038 0.670009171 0.670539671
## 
## ,,2
##            [,1]       [,2]       [,3]
## [1,] 0.43843687 0.77206004 0.97339613
## [2,] 0.82573120 0.07940971 0.63985851
## 
## ,,3
##            [,1]       [,2]       [,3]
## [1,] 0.83951198 0.01191961 0.71145066
## [2,] 0.35477202 0.65406915 0.65242707
## 
## ,,4
##            [,1]       [,2]       [,3]
## [1,] 0.03350723 0.47447839 0.51221930
## [2,] 0.49626976 0.89294350 0.27143323
identical(as.array(darr1), as.array(dmat1_to_darr1))
## [1] TRUE

There are some wrapper functions of unfold and fold.

For example, in k_unfold, mode m is used as the row, and the other modes are is used as the column.

k_fold is the inverse operation of k_unfold.

dmat2 <- DelayedTensor::k_unfold(darr1, m=1)
dmat2_to_darr1 <- k_fold(dmat2, m=1, modes=dim(darr1))
identical(as.array(darr1), as.array(dmat2_to_darr1))
## [1] TRUE
dmat3 <- DelayedTensor::k_unfold(darr1, m=2)
dmat3_to_darr1 <- k_fold(dmat3, m=2, modes=dim(darr1))
identical(as.array(darr1), as.array(dmat3_to_darr1))
## [1] TRUE
dmat4 <- DelayedTensor::k_unfold(darr1, m=3)
dmat4_to_darr1 <- k_fold(dmat4, m=3, modes=dim(darr1))
identical(as.array(darr1), as.array(dmat4_to_darr1))
## [1] TRUE

In rs_unfold, mode m is used as the row, and the other modes are is used as the column.

rs_fold and rs_unfold also perform the same operations.

On the other hand, cs_unfold specifies the mode m as the column and the other modes are specified as the column.

cs_fold is the inverse operation of cs_unfold.

dmat8 <- DelayedTensor::cs_unfold(darr1, m=1)
dmat8_to_darr1 <- DelayedTensor::cs_fold(dmat8, m=1, modes=dim(darr1))
identical(as.array(darr1), as.array(dmat8_to_darr1))
## [1] TRUE
dmat9 <- DelayedTensor::cs_unfold(darr1, m=2)
dmat9_to_darr1 <- DelayedTensor::cs_fold(dmat9, m=2, modes=dim(darr1))
identical(as.array(darr1), as.array(dmat9_to_darr1))
## [1] TRUE
dmat10 <- DelayedTensor::cs_unfold(darr1, m=3)
dmat10_to_darr1 <- DelayedTensor::cs_fold(dmat10, m=3, modes=dim(darr1))
identical(as.array(darr1), as.array(dmat10_to_darr1))
## [1] TRUE

In matvec, m=2 is specified as unfold.

unmatvec is the inverse operation of matvec.

dmat11 <- DelayedTensor::matvec(darr1)
dmat11_darr1 <- DelayedTensor::unmatvec(dmat11, modes=dim(darr1))
identical(as.array(darr1), as.array(dmat11_darr1))
## [1] TRUE

ttm multiplies a tensor by a matrix.

m specifies in which mode the matrix will be multiplied.

dmatZ <- RandomUnifArray(c(10,4))
DelayedTensor::ttm(darr1, dmatZ, m=3)
## <2 x 3 x 10> DelayedArray object of type "double":
## ,,1
##           [,1]      [,2]      [,3]
## [1,] 1.0373634 0.7853756 1.4276163
## [2,] 1.1168657 0.8541207 1.1878447
## 
## ,,2
##          [,1]     [,2]     [,3]
## [1,] 0.928162 1.253825 1.498211
## [2,] 1.551931 1.354518 1.528194
## 
## ,,3
##           [,1]      [,2]      [,3]
## [1,] 0.9574171 0.7156261 1.0829046
## [2,] 1.0830297 1.2140970 1.3058680
## 
## ...
## 
## ,,8
##           [,1]      [,2]      [,3]
## [1,] 0.2872701 0.7808823 0.9420473
## [2,] 0.8463741 0.8531347 0.5850835
## 
## ,,9
##           [,1]      [,2]      [,3]
## [1,] 0.2050942 0.6952077 0.5511979
## [2,] 0.7694413 0.8758420 0.6716669
## 
## ,,10
##           [,1]      [,2]      [,3]
## [1,] 0.7867996 0.8430118 1.2343696
## [2,] 1.1429340 1.4775101 1.1488208

ttl multiplies a tensor by multiple matrices.

ms specifies in which mode these matrices will be multiplied.

dmatX <- RandomUnifArray(c(10,2))
dmatY <- RandomUnifArray(c(10,3))
dlizt <- list(dmatX = dmatX, dmatY = dmatY)
DelayedTensor::ttl(darr1, dlizt, ms=c(1,2))
## <10 x 10 x 4> DelayedArray object of type "double":
## ,,1
##             [,1]       [,2]       [,3] ...      [,9]     [,10]
##  [1,] 0.08203636 0.21322421 0.28322489   . 0.1486970 0.2549685
##  [2,] 0.35535679 0.48969622 0.50055531   . 0.4136375 0.6500866
##   ...          .          .          .   .         .         .
##  [9,]  0.2379152  0.4011501  0.4578025   . 0.3158632 0.5119845
## [10,]  0.2686448  0.4233866  0.4674286   . 0.3409515 0.5471439
## 
## ...
## 
## ,,4
##            [,1]      [,2]      [,3] ...      [,9]     [,10]
##  [1,] 0.2063448 0.3098618 0.3548055   . 0.3088989 0.3958410
##  [2,] 0.2995057 0.4627765 0.5063093   . 0.3769093 0.6000572
##   ...         .         .         .   .         .         .
##  [9,] 0.3009067 0.4583792 0.5130552   . 0.4146893 0.5900095
## [10,] 0.2992631 0.4576401 0.5090756   . 0.4027386 0.5902437

2.2 Vectorization

vec collapses a DelayedArray into a 1D DelayedArray (vector).

Figure 2: Vectorization

DelayedTensor::vec(darr1)
## <24> HDF5Array object of type "double":
##         [1]         [2]         [3]           .        [23]        [24] 
## 0.001969617 0.635680038 0.612269619           .   0.5122193   0.2714332

2.3 Norm Operations

fnorm calculates the Frobenius norm of a DelayedArray.

Figure 3: Norm Operations

DelayedTensor::fnorm(darr1)
## [1] 2.88237

innerProd calculates the inner product value of two DelayedArray.

DelayedTensor::innerProd(darr1, darr2)
## [1] 5.978293

2.4 Outer Product

Inner product multiplies two tensors and collapses to 0D tensor (norm). On the other hand, the outer product is an operation that leaves all subscripts intact.

Figure 4: Outer Product

DelayedTensor::outerProd(darr1[,,1], darr2[,,1])
## <2 x 3 x 2 x 3> HDF5Array object of type "double":
## ,,1,1
##              [,1]         [,2]         [,3]
## [1,] 0.0006165502 0.1916590441 0.0091174761
## [2,] 0.1989872184 0.2097332830 0.2098993458
## 
## ,,2,1
##             [,1]        [,2]        [,3]
## [1,] 0.001915112 0.595326332 0.028320467
## [2,] 0.618088916 0.651468062 0.651983882
## 
## ,,1,2
##             [,1]        [,2]        [,3]
## [1,] 0.000436813 0.135786465 0.006459543
## [2,] 0.140978325 0.148591689 0.148709341
## 
## ,,2,2
##             [,1]        [,2]        [,3]
## [1,] 0.001600166 0.497422978 0.023663074
## [2,] 0.516442182 0.544332018 0.544763010
## 
## ,,1,3
##             [,1]        [,2]        [,3]
## [1,] 0.001833861 0.570068922 0.027118938
## [2,] 0.591865777 0.623828775 0.624322710
## 
## ,,2,3
##              [,1]         [,2]         [,3]
## [1,] 0.0001950676 0.0606381608 0.0028846381
## [2,] 0.0629566896 0.0663565896 0.0664091295

2.5 Diagonal Operations

Using DelayedDiagonalArray, we can originally create a diagonal DelayedArray by specifying the dimensions (modes) and the values.

Figure 5: Diagonal Operations

dgdarr <- DelayedTensor::DelayedDiagonalArray(c(5,6,7), 1:5)
dgdarr
## <5 x 6 x 7> sparse DelayedArray object of type "integer":
## ,,1
##      [,1] [,2] [,3] [,4] [,5] [,6]
## [1,]    1    0    0    0    0    0
## [2,]    0    0    0    0    0    0
## [3,]    0    0    0    0    0    0
## [4,]    0    0    0    0    0    0
## [5,]    0    0    0    0    0    0
## 
## ...
## 
## ,,7
##      [,1] [,2] [,3] [,4] [,5] [,6]
## [1,]    0    0    0    0    0    0
## [2,]    0    0    0    0    0    0
## [3,]    0    0    0    0    0    0
## [4,]    0    0    0    0    0    0
## [5,]    0    0    0    0    0    0

Similar to the diag of the base package, the diag of DelayedTensor is used to extract and assign values to DelayedArray.

DelayedTensor::diag(dgdarr)
## <5> DelayedArray object of type "integer":
## [1] [2] [3] [4] [5] 
##   1   2   3   4   5
DelayedTensor::diag(dgdarr) <- c(1111, 2222, 3333, 4444, 5555)
DelayedTensor::diag(dgdarr)
## <5> DelayedArray object of type "double":
##  [1]  [2]  [3]  [4]  [5] 
## 1111 2222 3333 4444 5555

2.6 Mode-wise Operations

modeSum calculates the summation for a given mode m of a DelayedArray. The mode specified as m is collapsed into 1D as follows.

Figure 6: Mode-wise Operations

DelayedTensor::modeSum(darr1, m=1)
## <1 x 3 x 4> DelayedArray object of type "double":
## ,,1
##           [,1]      [,2]      [,3]
## [1,] 0.6376497 1.2822788 0.6996662
## 
## ,,2
##           [,1]      [,2]      [,3]
## [1,] 1.2641681 0.8514698 1.6132546
## 
## ,,3
##           [,1]      [,2]      [,3]
## [1,] 1.1942840 0.6659888 1.3638777
## 
## ,,4
##           [,1]      [,2]      [,3]
## [1,] 0.5297770 1.3674219 0.7836525
DelayedTensor::modeSum(darr1, m=2)
## <2 x 1 x 4> DelayedArray object of type "double":
## ,,1
##           [,1]
## [1,] 0.6433657
## [2,] 1.9762289
## 
## ,,2
##          [,1]
## [1,] 2.183893
## [2,] 1.544999
## 
## ,,3
##          [,1]
## [1,] 1.562882
## [2,] 1.661268
## 
## ,,4
##          [,1]
## [1,] 1.020205
## [2,] 1.660646
DelayedTensor::modeSum(darr1, m=3)
## <2 x 3 x 1> DelayedArray object of type "double":
## ,,1
##          [,1]     [,2]     [,3]
## [1,] 1.313426 1.870728 2.226193
## [2,] 2.312453 2.296432 2.234258

Similar to modeSum, modeMean calculates the average value for a given mode m of a DelayedArray.

DelayedTensor::modeMean(darr1, m=1)
## <1 x 3 x 4> DelayedArray object of type "double":
## ,,1
##           [,1]      [,2]      [,3]
## [1,] 0.3188248 0.6411394 0.3498331
## 
## ,,2
##           [,1]      [,2]      [,3]
## [1,] 0.6320840 0.4257349 0.8066273
## 
## ,,3
##           [,1]      [,2]      [,3]
## [1,] 0.5971420 0.3329944 0.6819389
## 
## ,,4
##           [,1]      [,2]      [,3]
## [1,] 0.2648885 0.6837109 0.3918263
DelayedTensor::modeMean(darr1, m=2)
## <2 x 1 x 4> DelayedArray object of type "double":
## ,,1
##           [,1]
## [1,] 0.2144552
## [2,] 0.6587430
## 
## ,,2
##           [,1]
## [1,] 0.7279643
## [2,] 0.5149998
## 
## ,,3
##           [,1]
## [1,] 0.5209608
## [2,] 0.5537561
## 
## ,,4
##           [,1]
## [1,] 0.3400683
## [2,] 0.5535488
DelayedTensor::modeMean(darr1, m=3)
## <2 x 3 x 1> DelayedArray object of type "double":
## ,,1
##           [,1]      [,2]      [,3]
## [1,] 0.3283564 0.4676819 0.5565481
## [2,] 0.5781133 0.5741079 0.5585646

2.7 Tensor Product Operations

There are some tensor specific product such as Hadamard product, Kronecker product, and Khatri-Rao product.

2.7.1 Hadamard Product

Suppose a tensor \(A \in \Re ^{I \times J}\) and a tensor \(B \in \Re ^{I \times J}\).

Hadamard product is defined as the element-wise product of \(A\) and \(B\).

Figure 7: Hadamard Product

Hadamard product can be extended to higher-order tensors.

\[ A \circ B = \begin{bmatrix} a_{11}b_{11} & a_{12}b_{12} & \cdots & a_{1J}b_{1J} \\ a_{21}b_{21} & a_{22}b_{22} & \cdots & a_{2J}b_{2J} \\ \vdots & \vdots & \ddots & \vdots \\ a_{I1}b_{I1} & a_{I2}b_{I2} & \cdots & a_{IJ}b_{IJ} \\ \end{bmatrix} \]

hadamard calculates Hadamard product of two DelayedArray objects.

prod_h <- DelayedTensor::hadamard(darr1, darr2)
dim(prod_h)
## [1] 2 3 4

hadamard_list calculates Hadamard product of multiple DelayedArray objects.

prod_hl <- DelayedTensor::hadamard_list(list(darr1, darr2))
dim(prod_hl)
## [1] 2 3 4

2.7.2 Kronecker Product

Suppose a tensor \(A \in \Re ^{I \times J}\) and a tensor \(B \in \Re ^{K \times L}\).

Kronecker product is defined as all the possible combination of element-wise product and the dimensions of output tensor are \({IK \times JL}\).

Figure 8: Kronecker Product

Kronecker product can be extended to higher-order tensors.

\[ A \otimes B = \begin{bmatrix} a_{11}B & a_{12}B & \cdots & a_{1J}B \\ a_{21}B & a_{22}B & \cdots & a_{2J}B \\ \vdots & \vdots & \ddots & \vdots \\ a_{I1}B & a_{I2}B & \cdots & a_{IJ}B \\ \end{bmatrix} \]

kronecker calculates Kronecker product of two DelayedArray objects.

prod_kron <- DelayedTensor::kronecker(darr1, darr2)
dim(prod_kron)
## [1]  4  9 16

kronecker_list calculates Kronecker product of multiple DelayedArray objects.

prod_kronl <- DelayedTensor::kronecker_list(list(darr1, darr2))
dim(prod_kronl)
## [1]  4  9 16

2.7.3 Khatri-Rao Product

Suppose a tensor \(A \in \Re ^{I \times J}\) and a tensor \(B \in \Re ^{K \times J}\).

Khatri-Rao product is defined as the column-wise Kronecker product and the dimensions of output tensor is \({IK \times J}\).

\[ A \odot B = \begin{bmatrix} a_{1} \otimes a_{1} & a_{2} \otimes a_{2} & \cdots & a_{J} \otimes a_{J} \\ \end{bmatrix} \]

Figure 9: Khatri-Rao Product

Khatri-Rao product can only be used for 2D tensors (matrices).

khatri_rao calculates Khatri-Rao product of two DelayedArray objects.

prod_kr <- DelayedTensor::khatri_rao(darr1[,,1], darr2[,,1])
dim(prod_kr)
## [1] 4 3

khatri_rao_list calculates Khatri-Rao product of multiple DelayedArray objects.

prod_krl <- DelayedTensor::khatri_rao_list(list(darr1[,,1], darr2[,,1]))
dim(prod_krl)
## [1] 4 3

2.8 Utilities Functions

list_rep replicates an arbitrary number of any R object.

str(DelayedTensor::list_rep(darr1, 3))
## List of 3
##  $ :Formal class 'RandomUnifArray' [package "DelayedRandomArray"] with 1 slot
##   .. ..@ seed:Formal class 'RandomUnifArraySeed' [package "DelayedRandomArray"] with 6 slots
##   .. .. .. ..@ min     : num 0
##   .. .. .. ..@ max     : num 1
##   .. .. .. ..@ dim     : int [1:3] 2 3 4
##   .. .. .. ..@ chunkdim: int [1:3] 2 3 4
##   .. .. .. ..@ seeds   :List of 1
##   .. .. .. .. ..$ : int [1:2] -521953213 -1883727912
##   .. .. .. ..@ sparse  : logi FALSE
##  $ :Formal class 'RandomUnifArray' [package "DelayedRandomArray"] with 1 slot
##   .. ..@ seed:Formal class 'RandomUnifArraySeed' [package "DelayedRandomArray"] with 6 slots
##   .. .. .. ..@ min     : num 0
##   .. .. .. ..@ max     : num 1
##   .. .. .. ..@ dim     : int [1:3] 2 3 4
##   .. .. .. ..@ chunkdim: int [1:3] 2 3 4
##   .. .. .. ..@ seeds   :List of 1
##   .. .. .. .. ..$ : int [1:2] -521953213 -1883727912
##   .. .. .. ..@ sparse  : logi FALSE
##  $ :Formal class 'RandomUnifArray' [package "DelayedRandomArray"] with 1 slot
##   .. ..@ seed:Formal class 'RandomUnifArraySeed' [package "DelayedRandomArray"] with 6 slots
##   .. .. .. ..@ min     : num 0
##   .. .. .. ..@ max     : num 1
##   .. .. .. ..@ dim     : int [1:3] 2 3 4
##   .. .. .. ..@ chunkdim: int [1:3] 2 3 4
##   .. .. .. ..@ seeds   :List of 1
##   .. .. .. .. ..$ : int [1:2] -521953213 -1883727912
##   .. .. .. ..@ sparse  : logi FALSE

2.8.1 Bind Operations

modebind_list collapses multiple DelayedArray objects into single DelayedArray object.

m specifies the collapsed dimension.

Figure 10: Bind Operations

dim(DelayedTensor::modebind_list(list(darr1, darr2), m=1))
## [1] 4 3 4
dim(DelayedTensor::modebind_list(list(darr1, darr2), m=2))
## [1] 2 6 4
dim(DelayedTensor::modebind_list(list(darr1, darr2), m=3))
## [1] 2 3 8

rbind_list is the row-wise modebind_list and collapses multiple 2D DelayedArray objects into single DelayedArray object.

dim(DelayedTensor::rbind_list(list(darr1[,,1], darr2[,,1])))
## [1] 4 3

cbind_list is the column-wise modebind_list and collapses multiple 2D DelayedArray objects into single DelayedArray object.

dim(DelayedTensor::cbind_list(list(darr1[,,1], darr2[,,1])))
## [1] 2 6

Session information

## R Under development (unstable) (2023-10-22 r85388)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 22.04.3 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.19-bioc/R/lib/libRblas.so 
## LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
## 
## locale:
##  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
##  [3] LC_TIME=en_US.UTF-8        LC_COLLATE=en_US.UTF-8    
##  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
##  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
##  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
## 
## time zone: America/New_York
## tzcode source: system (glibc)
## 
## attached base packages:
## [1] stats4    stats     graphics  grDevices utils     datasets  methods  
## [8] base     
## 
## other attached packages:
##  [1] DelayedRandomArray_1.11.0 HDF5Array_1.31.0         
##  [3] rhdf5_2.47.0              DelayedArray_0.29.0      
##  [5] SparseArray_1.3.0         S4Arrays_1.3.0           
##  [7] abind_1.4-5               IRanges_2.37.0           
##  [9] S4Vectors_0.41.0          MatrixGenerics_1.15.0    
## [11] matrixStats_1.0.0         BiocGenerics_0.49.0      
## [13] Matrix_1.6-1.1            DelayedTensor_1.9.0      
## [15] BiocStyle_2.31.0         
## 
## loaded via a namespace (and not attached):
##  [1] jsonlite_1.8.7      compiler_4.4.0      BiocManager_1.30.22
##  [4] crayon_1.5.2        rsvd_1.0.5          Rcpp_1.0.11        
##  [7] rhdf5filters_1.15.0 parallel_4.4.0      jquerylib_0.1.4    
## [10] BiocParallel_1.37.0 yaml_2.3.7          fastmap_1.1.1      
## [13] lattice_0.22-5      R6_2.5.1            XVector_0.43.0     
## [16] ScaledMatrix_1.11.0 knitr_1.44          einsum_0.1.2       
## [19] bookdown_0.36       bslib_0.5.1         rlang_1.1.1        
## [22] cachem_1.0.8        xfun_0.40           sass_0.4.7         
## [25] cli_3.6.1           Rhdf5lib_1.25.0     BiocSingular_1.19.0
## [28] zlibbioc_1.49.0     digest_0.6.33       grid_4.4.0         
## [31] irlba_2.3.5.1       rTensor_1.4.8       dqrng_0.3.1        
## [34] evaluate_0.22       codetools_0.2-19    beachmat_2.19.0    
## [37] rmarkdown_2.25      tools_4.4.0         htmltools_0.5.6.1