Skip to content

Commit

Permalink
adjust
Browse files Browse the repository at this point in the history
  • Loading branch information
yf711 committed Dec 19, 2023
1 parent 0e7dc50 commit c13d7d8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ struct TensorRTCustomOp : Ort::CustomOpBase<TensorRTCustomOp, TensorRTCustomKern

OrtCustomOpInputOutputCharacteristic GetOutputCharacteristic(size_t) const { return OrtCustomOpInputOutputCharacteristic::INPUT_OUTPUT_VARIADIC; };

constexpr bool GetVariadicInputHomogeneity() const noexcept {
bool GetVariadicInputHomogeneity() const {
return false; // heterogenous
}

constexpr bool GetVariadicOutputHomogeneity() const noexcept {
bool GetVariadicOutputHomogeneity() const {
return false; // heterogeneous
}

Expand Down

0 comments on commit c13d7d8

Please sign in to comment.