/* * Copyright 2012 Phil Pratt-Szeliga and other contributors * http://chirrup.org/ * * See the file LICENSE for copying permission. */ package org.trifort.rootbeer.testcases.rootbeertest.serialization; import org.trifort.rootbeer.runtime.Kernel; public class GpuMethodKernel implements Kernel { public void gpuMethod(int a) { gpuMethod(1,2); gpuMethod(1,2,3); } public void gpuMethod(int a, int b) { gpuMethod(1,2,3); } public void gpuMethod(int a, int b, int c) { } public void gpuMethod() { gpuMethod(1); gpuMethod(1,2); gpuMethod(1,2,3); } }