McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2025
→
Computer Science Engineering (CSE)
→
High Performance Computing (HPC)
→
CUDA offers the Chevron Syntax to config...
Q.
CUDA offers the Chevron Syntax to configure and execute a kernel.
A.
true
B.
false
Answer» A. true
4.1k
0
Do you find this helpful?
47
View all MCQs in
High Performance Computing (HPC)
Discussion
No comments yet
Login to comment
Related MCQs
The NVIDIA G80 is a ---- CUDA core device, the NVIDIA G200 is a ---- CUDA core device, and the NVIDIA Fermi is a ---- CUDA core device.
In CUDA, a single invoked kernel is referred to as a _____.
Limitations of CUDA Kernel
A simple kernel for adding two integers: __global__ void add( int *a, int *b, int *c ) { *c = *a + *b; } where __global__ is a CUDA C keyword which indicates that:
CUDA helps do execute code in parallel mode using __________
A CUDA program is comprised of two primary components: a host and a _____.
the BlockPerGrid and ThreadPerBlock parameters are related to the ________ model supported by CUDA.
Host codes in a CUDA application can Transfer data to and from the device
CUDA provides ------- warp and thread scheduling. Also, the overhead of thread creation is on the order of ----.
The CUDA architecture consists of --------- for parallel computing kernels and functions.