Community Profile

photo

pb


Con actividad desde 2017

Followers: 0   Following: 0

Estadísticas

  • First Review
  • Thankful Level 3
  • First Answer

Ver insignias

Feeds

Ver por

Pregunta


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...

más de 5 años hace | 1 respuesta | 1

1

respuesta

Pregunta


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) =...

más de 5 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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...

más de 5 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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...

más de 5 años hace | 3 respuestas | 0

3

respuestas

Pregunta


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...

más de 5 años hace | 1 respuesta | 0

1

respuesta

Respondida
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 ...

más de 6 años hace | 1