Click here to Skip to main content
15,897,334 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Deleting ini key-value using API Pin
_AnsHUMAN_ 30-Apr-09 0:33
_AnsHUMAN_ 30-Apr-09 0:33 
QuestionRe: Deleting ini key-value using API Pin
CodingLover30-Apr-09 0:49
CodingLover30-Apr-09 0:49 
AnswerRe: Deleting ini key-value using API Pin
Rajesh R Subramanian30-Apr-09 0:58
professionalRajesh R Subramanian30-Apr-09 0:58 
QuestionDetect text (word) under mouse pointer Pin
Héctor Pavón29-Apr-09 22:50
Héctor Pavón29-Apr-09 22:50 
AnswerRe: Detect text (word) under mouse pointer Pin
Stephen Hewitt30-Apr-09 0:02
Stephen Hewitt30-Apr-09 0:02 
GeneralRe: Detect text (word) under mouse pointer Pin
Héctor Pavón30-Apr-09 5:27
Héctor Pavón30-Apr-09 5:27 
Questionupdating from vc2002 to vc2005 Pin
002comp29-Apr-09 22:30
002comp29-Apr-09 22:30 
AnswerRe: updating from vc2002 to vc2005 Pin
_AnsHUMAN_ 29-Apr-09 22:35
_AnsHUMAN_ 29-Apr-09 22:35 
GeneralRe: updating from vc2002 to vc2005 Pin
002comp29-Apr-09 22:53
002comp29-Apr-09 22:53 
QuestionRe: updating from vc2002 to vc2005 Pin
David Crow30-Apr-09 3:51
David Crow30-Apr-09 3:51 
Question::ShellExecute - Problem passing arguments Pin
PankajB29-Apr-09 22:10
PankajB29-Apr-09 22:10 
AnswerRe: ::ShellExecute - Problem passing arguments Pin
Rajesh R Subramanian29-Apr-09 22:23
professionalRajesh R Subramanian29-Apr-09 22:23 
GeneralRe: ::ShellExecute - Problem passing arguments Pin
PankajB29-Apr-09 22:27
PankajB29-Apr-09 22:27 
GeneralRe: ::ShellExecute - Problem passing arguments Pin
Rajesh R Subramanian29-Apr-09 22:32
professionalRajesh R Subramanian29-Apr-09 22:32 
AnswerRe: ::ShellExecute - Problem passing arguments Pin
Cedric Moonen29-Apr-09 22:27
Cedric Moonen29-Apr-09 22:27 
QuestionRe: ::ShellExecute - Problem passing arguments Pin
CPallini29-Apr-09 22:32
mveCPallini29-Apr-09 22:32 
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 

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.