Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions projects/miopen/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -574,8 +574,8 @@ if( MIOPEN_BACKEND MATCHES "OpenCL" OR MIOPEN_BACKEND STREQUAL "HIPOC" OR MIOPEN
kernels/MIOpenGetitem.cpp
kernels/MIOpenKthvalue.cpp
kernels/MIOpenLayerNorm.cpp
kernels/MIOpenLRNBwd.cl
kernels/MIOpenLRNFwd.cl
kernels/MIOpenLRNBwd.cpp
kernels/MIOpenLRNFwd.cpp
kernels/MIOpenMultiMarginLoss.cpp
kernels/MIOpenNeuron.cpp
kernels/MIOpenPReLU.cpp
Expand Down
4 changes: 2 additions & 2 deletions projects/miopen/src/include/miopen/mlo_internal.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -557,8 +557,8 @@ struct mlo_construct_norm : mlo_construct_activ_lrn_pooling_common
void mloConstruct();

protected:
int mloConstructFwd();
int mloConstructBwd();
void mloConstructFwd();
void mloConstructBwd();
int _norm_region = 0;
int _norm_area = 0;
double _normAlpha = 0.0;
Expand Down
Loading
Loading