Community Profile

photo

pb


Active since 2017

Followers: 0   Following: 0

Statistics

  • First Review
  • Thankful Level 3
  • First Answer

View badges

Feeds

View by

Question


Is there a possibility to use 3D sparse matrices on GPU?
Hi I am aware of program ndsparse written to implement 3d sparse matrices by Matt J for CPU. However i think it does not extend...

5 years ago | 1 answer | 1

1

answer

Question


parfor slower than for in my code.
Hi, My code is the following parfor nn=1:Na temp=A{nn}*B{nn}; temp(1,1) = 0; temp(Nb,1) =...

5 years ago | 1 answer | 0

1

answer

Question


removing FOR loop to solve Ax=B on multidimensional arrays on GPU
Hi, my code looks this way now(Its an example code i wrote): A=gpuArray(rand([1000 1000 1000])); B=gpuArray(rand([1000 1 10...

5 years ago | 1 answer | 0

1

answer

Question


speed up run time of mldivide function.
Hi, I am calling mldivide function about 10^7 times: my syntax looks this way: C=mldivide(A,B); where both A,B are sparse...

5 years ago | 3 answers | 0

3

answers

Question


How to reassign values for sparse GPU arrays?
I created a sparse GPU array (say L=sparse(1:Nper-1,2:Nper,x,Nper,Nper), where x is a GPU array ). Then I tried to reassign va...

5 years ago | 1 answer | 0

1

answer

Answered
How to create a program to calculate taylor series of e^x using a while loop?
% calculation of e^x in taylor series x=3; % took an exampke vale of x=3 n=10; % took an example value of n=10 ...

6 years ago | 1