Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
goliaro committed Jan 19, 2024
1 parent 219441b commit daaa1b7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/runtime/graph.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2662,6 +2662,10 @@ void FFModel::deserialize_graph_optimal_view(
dez.deserialize(dim_size);
splits.push_back(dim_size);
}
size_t name_len;
char name[MAX_OPNAME] = {0};
dez.deserialize(name_len);
dez.deserialize(name, name_len);
node = get_or_create_node<Split>(inputs[0], {splits, legion_axis});
break;
}
Expand Down

0 comments on commit daaa1b7

Please sign in to comment.