Skip to content

Commit

Permalink
remove extra ; after marco (pytorch#866)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: pytorch#866

As title

Reviewed By: jianyuh

Differential Revision: D33617413

fbshipit-source-id: a059d1da44f00251c50a812a9aef6edb91522e38
  • Loading branch information
jspark1105 authored and facebook-github-bot committed Jan 18, 2022
1 parent c3ad33c commit 80e3f16
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/FbgemmI8Depthwise3DAvx2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1032,9 +1032,9 @@ void depthwise_3d_same_pad(
INSTANTIATE_BASE(Q_GRAN, int32_t) \
INSTANTIATE_BASE(Q_GRAN, float)

INSTANTIATE_BIAS_T(TENSOR);
INSTANTIATE_BIAS_T(GROUP);
INSTANTIATE_BIAS_T(OUT_CHANNEL);
INSTANTIATE_BIAS_T(TENSOR)
INSTANTIATE_BIAS_T(GROUP)
INSTANTIATE_BIAS_T(OUT_CHANNEL)

#undef INSTANTIATE_BIAS_T
#undef INSTANTIATE_BASE
Expand Down
6 changes: 3 additions & 3 deletions src/FbgemmI8DepthwiseAvx2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,9 @@ void depthwise_2d_same_pad(
INSTANTIATE_BASE(Q_GRAN, int32_t) \
INSTANTIATE_BASE(Q_GRAN, float)

INSTANTIATE_BIAS_T(TENSOR);
INSTANTIATE_BIAS_T(GROUP);
INSTANTIATE_BIAS_T(OUT_CHANNEL);
INSTANTIATE_BIAS_T(TENSOR)
INSTANTIATE_BIAS_T(GROUP)
INSTANTIATE_BIAS_T(OUT_CHANNEL)

#undef INSTANTIATE_BIAS_T
#undef INSTANTIATE_CT
Expand Down

0 comments on commit 80e3f16

Please sign in to comment.