Skip to content

Commit 5b96c43

Browse files
author
abergeron
authored
Merge pull request #532 from jvesely/elemwise-fix
check_elemwise: Fix array size.
2 parents f212cf8 + a5c260b commit 5b96c43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/check_elemwise.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ START_TEST(test_basic_scalar) {
371371
GpuElemwise *ge;
372372

373373
static const uint32_t data1[3] = {1, 2, 3};
374-
static const uint32_t data2[3] = {4, 5};
374+
static const uint32_t data2[2] = {4, 5};
375375
uint32_t data3[6] = {0};
376376

377377
size_t dims[2];

0 commit comments

Comments
 (0)