Skip to content

Commit

Permalink
Sync from upstream TF.
Browse files Browse the repository at this point in the history
  • Loading branch information
TFLM-bot committed Sep 27, 2024
1 parent 722913e commit a4a3a9e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tensorflow/lite/core/c/c_api_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,13 @@ typedef enum TfLiteStatus {
// TODO(b/250636993): Cancellation triggered by `SetCancellationFunction`
// should also return this status code.
kTfLiteCancelled = 8,

// This status is returned by Prepare when the output shape cannot be
// determined but the size of the output tensor is known. For example, the
// output of reshape is always the same size as the input. This means that
// such ops may be
// done in place.
kTfLiteOutputShapeNotKnown = 9,
} TfLiteStatus;

/// Types supported by tensor
Expand Down

0 comments on commit a4a3a9e

Please sign in to comment.