photo

Naveen kumar Elumalai


Last seen: 5 years ago Active since 2018

Followers: 0   Following: 0

Statistics

MATLAB Answers

8 Questions
1 Answer

RANK
108,723
of 300,338

REPUTATION
0

CONTRIBUTIONS
8 Questions
1 Answer

ANSWER ACCEPTANCE
37.5%

VOTES RECEIVED
0

RANK
 of 20,922

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168,149

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • Thankful Level 1
  • First Answer

View badges

Feeds

View by

Question


How to get the data from all the workers to a single worker inside SPMD loop
Nc=3600; spmd n1=numlabs; blocksize = ceil(Nc/n1); start = (labindex-1)*blocksize + 1...

6 years ago | 0 answers | 0

0

answers

Question


Error was detected while a MEX-file was running and MATLAB is exiting because of fatal error
I am trying to run the batched version of QR (dgeqrfbatched) in matlab using CUBLAS by calling it from a mex file. I am struck w...

6 years ago | 1 answer | 0

1

answer

Question


how to run Gpu and Cpu in parallel in for loop?
for i=1:10 A(:,:,i)=rand(5,5); [q1,r1]=qr(A(:,:,i)); end I wanted cpu and gpu's to communicate with itself about the...

7 years ago | 1 answer | 0

1

answer

Question


mexcuda not finding CUDA 10.0 even after I specify it via setenv('MW​_NVCC_PATH​',...)
I have set the path of MW_NVCC_PATH to setenv('MW_NVCC_PATH','C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\bin') ...

7 years ago | 1 answer | 0

1

answer

Question


How to convert this without using for loop for gpu computing?
A2 is a Gpu array(600*104*36) Code: for n=1:36 [Q(:,:,n),R(:,:,n)]=qr(A2(:,:,n),0); end

7 years ago | 0 answers | 0

0

answers

Answered
Is there a way to run this loop in gpu and will it consume lesser time compared to parallel cpu computation time?
This is taking so much time than the normal cpu execution

7 years ago | 0

Question


Is there a way to run this loop in gpu and will it consume lesser time compared to parallel cpu computation time?
N=50; for n=1:8 b=rand(300,103); w=rand(300,1); [Q,R]=qr(b,0); A(:,:,n);=R end

7 years ago | 1 answer | 0

1

answer

Question


how do i store a matrix value inside a parfor loop?
I wanted to use the A matrix outside the parfor loop for further computation, i get an error stating "cannot run due to way vari...

7 years ago | 1 answer | 0

1

answer

1

answer