blob: 09b4349bc5e9e485b21fae24982f0882221a9ddd (
plain)
1
2
3
4
5
6
7
8
|
#include "utest_helper.hpp"
static void compiler_multiple_kernels(void)
{
OCL_CREATE_KERNEL_FROM_FILE("compiler_multiple_kernels", "first_kernel");
}
MAKE_UTEST_FROM_FUNCTION(compiler_multiple_kernels);
|