diff --git a/TestKernels/testKernels.jl b/TestKernels/testKernels.jl index b3ce79d..f797d64 100644 --- a/TestKernels/testKernels.jl +++ b/TestKernels/testKernels.jl @@ -111,12 +111,21 @@ end KDivRhoThUpwind3Kernel! = GPU.DivRhoThUpwind3Kernel!(backend,group) KDivRhoThUpwind3Kernel!(F,U,D,dXdxI,J,M,Glob,ndrange=ndrange) KernelAbstractions.synchronize(backend) -@show "Upwind" +@show "UpwindRho and RhoTh" @time for iter = 1 : TestIter KDivRhoThUpwind3Kernel!(F,U,D,dXdxI,J,M,Glob,ndrange=ndrange) KernelAbstractions.synchronize(backend) end +KDivRhoTrUpwind3Kernel! = GPU.DivRhoTrUpwind3Kernel!(backend,group) +KDivRhoTrUpwind3Kernel!(FTh,Th,U,D,dXdxI,J,M,Glob,ndrange=ndrange) +KernelAbstractions.synchronize(backend) +@show "Upwind Tracer" +@time for iter = 1 : TestIter + KDivRhoTrUpwind3Kernel!(FTh,Th,U,D,dXdxI,J,M,Glob,ndrange=ndrange) + KernelAbstractions.synchronize(backend) +end + KHyperViscKoeffKernel! = GPU.HyperViscKoeffKernel!(backend,group) KHyperViscKoeffKernel!(F,U,CacheF,D,DW,dXdxI,J,M,Glob,KoeffCurl,KoeffGrad,KoeffDiv,ndrange=ndrange) KernelAbstractions.synchronize(backend)