Skip to content

Commit

Permalink
[DOCS] Fix C++ example:graph_runtime.cc:151: Check failed: data->ndim…
Browse files Browse the repository at this point in the history
… == data_out->ndim (2 vs. 1) (apache#1987)
  • Loading branch information
Howave authored and AWS Neo committed Feb 20, 2019
1 parent 3547120 commit 43c5140
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/deploy/nnvm.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ int main()
run();

DLTensor* y;
int out_ndim = 1;
int64_t out_shape[1] = {1000, };
int out_ndim = 2;
int64_t out_shape[2] = {1, 1000, };
TVMArrayAlloc(out_shape, out_ndim, dtype_code, dtype_bits, dtype_lanes, device_type, device_id, &y);

// get the function from the module(get output data)
Expand Down

0 comments on commit 43c5140

Please sign in to comment.