dipterix / filearray

Out-of-memory Arrays in R
https://dipterix.org/filearray/
17 stars 2 forks source link

Lazyeval #6

Closed dipterix closed 1 year ago

dipterix commented 1 year ago
  1. Allow file-arrays to lazy-evaluate.

Example:

x <- filearray::as_filearray(1:27, dimension = c(3,3,3))
# No evaluate
y <- x + 1
print(y)

# evaluate
print(y[])
y[x > 10]
  1. Using tinythreads instead of OpenMP to ensure multi-thread on OSX.