Skip to content

Commit

Permalink
[circledump] Print TransposeConv ActFunc (#11460)
Browse files Browse the repository at this point in the history
This will enable to print TransposeConv activation function.

ONE-DCO-1.0-Signed-off-by: SaeHie Park <[email protected]>
  • Loading branch information
seanshpark authored Sep 4, 2023
1 parent 7cd2031 commit 2fcd868
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions compiler/circledump/src/OpPrinter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -665,6 +665,8 @@ class TransposeConvPrinter : public OpPrinter
os << "Padding(" << params->padding() << ") ";
os << "Stride.W(" << params->stride_w() << ") ";
os << "Stride.H(" << params->stride_h() << ") ";
os << "Activation(" << EnumNameActivationFunctionType(params->fused_activation_function())
<< ") ";
os << std::endl;
}
}
Expand Down

0 comments on commit 2fcd868

Please sign in to comment.