gpuR icon indicating copy to clipboard operation
gpuR copied to clipboard

The package is not computing any tasks?

Open ArvinZaker opened this issue 3 years ago • 0 comments

Hi,

I have attempted to replicate one of the mini-programs that you have written in this pdf file. But the replication was not successful. This is the R terminal output:

> library("gpuR")

> detectGPUs()
[1] 1

> set.seed(123)

> A <- gpuVector(c(1:10))

> B <- A + A

> print(A[])
 [1]  1  2  3  4  5  6  7  8  9 10

> print(B[])
 [1] 0 0 0 0 0 0 0 0 0 0

The CRAN package was not present for this version of R so I tried this on the development branch of the package.

My computer details:

  • CPU: Core i7-3770K
  • GPU: R9 290x
  • 24GB of RAM
  • R version: 4.1.2

Thank you for your time and consideration.

ArvinZaker avatar Feb 26 '22 18:02 ArvinZaker