Skip to content

Commit 9547810

Browse files
authored
[GC-API] Align with the current GC API (#67)
Signed-off-by: Dmitry Chigarev <[email protected]>
1 parent 72b8af4 commit 9547810

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/dnnl/test_dnnl_c_interface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ TEST(dnnl_graph_compiler, c_interface) {
1818
dnnl_graph_compiler_tensor inputs[2];
1919
dnnl_graph_compiler_tensor outputs[1];
2020
uint8_t data_buf[160];
21-
size_t dims[1] = {10};
21+
int64_t dims[1] = {10};
2222
inputs[0] = {.id = 0, .ndims = 1, .dims = dims, .data = data_buf};
2323
inputs[1] = {.id = 1, .ndims = 1, .dims = dims, .data = &data_buf[40]};
2424
outputs[0] = {.id = 2, .ndims = 1, .dims = dims, .data = &data_buf[80]};

0 commit comments

Comments
 (0)