aboutsummaryrefslogtreecommitdiff
path: root/Examples/SimpleWaveCaKernel/cakernel.ccl
blob: 3926a5869cb0730e67b894e903cb01874c9d8a38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
CCTK_CUDA_KERNEL initial_sine TYPE=gpu_cuda/3dblock STENCIL=0,0,0,0,0,0 TILE=16,16,16 SHARECODE=yes
{
  CCTK_CUDA_KERNEL_VARIABLE  cached=yes intent=out
  {
    phi
  }
  "phi"
  
  CCTK_CUDA_KERNEL_VARIABLE  cached=yes intent=out
  {
    pi
  }
  "pi"
  
  CCTK_CUDA_KERNEL_VARIABLE  cached=yes intent=in
  {
    x
  }
  "x"
}