Skip to content

Commit 6803fb7

Browse files
Fix a bug in shard expansion.
1 parent 81c0d8b commit 6803fb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/task-spec/src/task-spec/dynamic_graph/shard_expansion.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ bool value_is_shard_expanded(DynamicValueAttrs const &n) {
1515

1616
bool no_part_of_graph_is_shard_expanded(DynamicOpenDataflowGraph const &g) {
1717
auto slot_is_shard_expanded = [](DynamicTensorSlot const &) -> bool {
18-
return true;
18+
return false;
1919
};
2020

2121
return no_part_of_dynamic_graph_satisfies(g,

0 commit comments

Comments
 (0)