Skip to content

Commit

Permalink
Merge pull request #49086 from geetachavan1/cherrypicks_VQH2G
Browse files Browse the repository at this point in the history
Prevent division by 0 in OneHot implementation
  • Loading branch information
mihaimaruseac committed May 11, 2021
2 parents c13f5f5 + 4523630 commit b8679da
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tensorflow/lite/kernels/one_hot.cc
Expand Up @@ -69,6 +69,11 @@ void OneHotComputeImpl(const OneHotContext& op_context) {
for (int i = 0; i < op_context.axis; ++i) {
prefix_dim_size *= op_context.indices->dims->data[i];
}
if (prefix_dim_size == 0) {
// If indices tensor is degenerate, return a degenerate tensor, just like
// TensorFlow does.
return;
}
const int suffix_dim_size = NumElements(op_context.indices) / prefix_dim_size;
const int depth = *op_context.depth->data.i32;

Expand Down

0 comments on commit b8679da

Please sign in to comment.