Click here to Skip to main content
15,887,683 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: ::ShellExecute - Problem passing arguments Pin
PankajB29-Apr-09 22:42
PankajB29-Apr-09 22:42 
GeneralRe: ::ShellExecute - Problem passing arguments Pin
Michael Schubert29-Apr-09 22:51
Michael Schubert29-Apr-09 22:51 
GeneralRe: ::ShellExecute - Problem passing arguments Pin
Rajesh R Subramanian29-Apr-09 22:52
professionalRajesh R Subramanian29-Apr-09 22:52 
GeneralRe: ::ShellExecute - Problem passing arguments Pin
CPallini29-Apr-09 23:02
mveCPallini29-Apr-09 23:02 
GeneralRe: ::ShellExecute - Problem passing arguments Pin
Michael Schubert29-Apr-09 23:16
Michael Schubert29-Apr-09 23:16 
GeneralRe: ::ShellExecute - Problem passing arguments Pin
CPallini29-Apr-09 23:34
mveCPallini29-Apr-09 23:34 
QuestionRe: ::ShellExecute - Problem passing arguments Pin
David Crow30-Apr-09 3:56
David Crow30-Apr-09 3:56 
QuestionWhat does <<< or >>> mean? Pin
detonation99729-Apr-09 21:22
detonation99729-Apr-09 21:22 
Recently I found a code-snippet in C++ on wikipedia. It's used to work with CUDA:
http://en.wikipedia.org/wiki/CUDA[^]

In the last line of
dim3 blockDim(16, 16, 1);
dim3 gridDim(width / blockDim.x, height / blockDim.y, 1);
kernel<<< gridDim, blockDim, 0 >>>(d_odata, width, height);


they are using these operators (or whatever) with "kernel" being a function:
__global__ void kernel(float* odata, int height, int width)
{
   unsigned int x = blockIdx.x*blockDim.x + threadIdx.x;
   unsigned int y = blockIdx.y*blockDim.y + threadIdx.y;
   float c = texfetch(tex, x, y);
   odata[y*width+x] = c;
}


What's the purpose for <<< and >>>? Thx for your answer!
AnswerRe: What does &lt;&lt;&lt; or &gt;&gt;&gt; mean? Pin
Chris Losinger30-Apr-09 2:43
professionalChris Losinger30-Apr-09 2:43 
QuestionHow to stop the thread if it's running? Pin
mikert_200829-Apr-09 21:01
mikert_200829-Apr-09 21:01 
AnswerRe: How to stop the thread if it's running? Pin
CPallini29-Apr-09 21:06
mveCPallini29-Apr-09 21:06 
GeneralRe: How to stop the thread if it's running? Pin
mikert_200829-Apr-09 21:19
mikert_200829-Apr-09 21:19 
GeneralRe: How to stop the thread if it's running? Pin
Cedric Moonen29-Apr-09 21:29
Cedric Moonen29-Apr-09 21:29 
GeneralRe: How to stop the thread if it's running? Pin
Rajesh R Subramanian29-Apr-09 22:05
professionalRajesh R Subramanian29-Apr-09 22:05 
GeneralRe: How to stop the thread if it's running? Pin
Cedric Moonen29-Apr-09 22:11
Cedric Moonen29-Apr-09 22:11 
GeneralRe: How to stop the thread if it's running? Pin
Rajesh R Subramanian29-Apr-09 22:19
professionalRajesh R Subramanian29-Apr-09 22:19 
GeneralRe: How to stop the thread if it's running? Pin
CPallini29-Apr-09 21:40
mveCPallini29-Apr-09 21:40 
GeneralRe: How to stop the thread if it's running? [modified] Pin
Rajesh R Subramanian29-Apr-09 22:00
professionalRajesh R Subramanian29-Apr-09 22:00 
NewsRe: How to stop the thread if it's running? Pin
Roger Stoltz29-Apr-09 22:26
Roger Stoltz29-Apr-09 22:26 
GeneralRe: How to stop the thread if it's running? Pin
Rajesh R Subramanian29-Apr-09 22:30
professionalRajesh R Subramanian29-Apr-09 22:30 
GeneralRe: How to stop the thread if it's running? Pin
Roger Stoltz29-Apr-09 22:35
Roger Stoltz29-Apr-09 22:35 
GeneralRe: How to stop the thread if it's running? Pin
Rajesh R Subramanian29-Apr-09 22:51
professionalRajesh R Subramanian29-Apr-09 22:51 
QuestionRe: How to stop the thread if it's running? Pin
CPallini29-Apr-09 22:42
mveCPallini29-Apr-09 22:42 
AnswerRe: How to stop the thread if it's running? Pin
Rajesh R Subramanian29-Apr-09 22:49
professionalRajesh R Subramanian29-Apr-09 22:49 
AnswerRe: How to stop the thread if it's running? Pin
Roger Stoltz29-Apr-09 22:52
Roger Stoltz29-Apr-09 22:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.