8 строки
140 B
C++
8 строки
140 B
C++
|
|
#include "hip/hip_runtime.h"
|
||
|
|
|
||
|
|
extern "C" __global__ void NullKernel(hipLaunchParm lp, float* Ad){
|
||
|
|
if (Ad) {
|
||
|
|
Ad[0] = 42;
|
||
|
|
}
|
||
|
|
}
|