Skip to content

Commit

Permalink
oof
Browse files Browse the repository at this point in the history
  • Loading branch information
karolherbst committed Aug 22, 2023
1 parent 129b4ad commit e8ea766
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_conformance/basic/test_vector_creation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#define DEBUG 0
#define DEPTH 16
// Limit the maximum code size for any given kernel.
#define MAX_CODE_SIZE (1024 * 32)
#define MAX_CODE_SIZE (1024 * 4)

static const int sizes[] = { 1, 2, 3, 4, 8, 16, -1, -1, -1, -1 };
static const int initial_no_sizes[] = { 0, 0, 0, 0, 0, 0, 2 };
Expand Down Expand Up @@ -72,7 +72,7 @@ int create_kernel(ExplicitType type, int output_size, char *program,

program[0] = '\0';
sprintf(program,
"%s\n__kernel void test_vector_creation(__global %s *src, __global "
"%s\n__kernel void test_vector_creation(__constant %s *src, __global "
"%s%s *result) {\n",
extension, get_explicit_type_name(type),
get_explicit_type_name(type),
Expand Down

0 comments on commit e8ea766

Please sign in to comment.