We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a03f47d commit 089bc28Copy full SHA for 089bc28
tests/api.c
@@ -90,7 +90,7 @@ void test2() {
90
real_t *bias = (real_t*)calloc(product(c3_bias_sizes, 1), sizeof(real_t));
91
real_t *dst = (real_t*)calloc(product(c3_dst_sizes, 4), sizeof(real_t));
92
real_t *out_mem = (real_t*)calloc(product(c3_dst_sizes, 4), sizeof(real_t));
93
- CHECK_TRUE(src && weights && bias && dst);
+ CHECK_TRUE(src && weights && bias && dst && out_mem);
94
95
for (int i = 0; i < c3_bias_sizes[0]; ++i) bias[i] = i;
96
0 commit comments