Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
882d01e7e18a73edab15ca1ab56191041e13d8ac
/
.
/
examples
/
cuda
/
default.cu
blob: 78080acb2401646b17b0c20b15e1bf5602e1db7f [
file
] [
log
] [
blame
] [
raw
]
// Type your code here, or load an example.
__global__
void
square
(
int
*
array
,
int
n
)
{
int
tid
=
blockIdx
.
x
;
if
(
tid
<
n
)
array
[
tid
]
=
array
[
tid
]
*
array
[
tid
];
}