Skip to content

Commit 86e72b0

Browse files
committed
note fix test=huawei_ascend_npu
1 parent bd6b7df commit 86e72b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lite/kernels/nnadapter/converter/shuffle_channel.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ int ConvertShuffleChannel(Converter* converter, OpInfo* op, Scope* scope) {
3434
// Output operand
3535
auto out_name = op->Output("Out").front();
3636
auto output_operand = converter->AddOutputOperand(out_name);
37-
// Group operation
37+
// Channel shuffle operation
3838
converter->AddOperation(NNADAPTER_CHANNEL_SHUFFLE,
3939
{input_operand, group_operand},
4040
{output_operand});

lite/kernels/nnadapter/converter/softplus.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ int ConvertSoftplus(Converter* converter, OpInfo* op, Scope* scope) {
7777
}
7878
}
7979
auto output_operand = converter->AddOutputOperand(out_name, out_scales);
80-
// LeakyRelu operation
80+
// Softplus operation
8181
converter->AddOperation(NNADAPTER_SOFTPLUS,
8282
{input_operand, beta_operand, threshold_operand},
8383
{output_operand});

0 commit comments

Comments
 (0)