mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 12:20:54 -05:00
13 lines
423 B
Text
13 lines
423 B
Text
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
|
|
|
|
#include "../SemaCUDA/cuda.h"
|
|
|
|
// Test that we build the correct number of calls to cudaSetupArgument followed
|
|
// by a call to cudaLaunch.
|
|
|
|
// CHECK: define{{.*}}kernelfunc
|
|
// CHECK: call{{.*}}cudaSetupArgument
|
|
// CHECK: call{{.*}}cudaSetupArgument
|
|
// CHECK: call{{.*}}cudaSetupArgument
|
|
// CHECK: call{{.*}}cudaLaunch
|
|
__global__ void kernelfunc(int i, int j, int k) {}
|