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
18 changes: 9 additions & 9 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -745,8 +745,8 @@ enable_cppcheck(
# but cppcheck doesn't understand that as it assumes everything
# will be compiled together in one binary.
ctuOneDefinitionRuleViolation:*test/*
ctuOneDefinitionRuleViolation:*src/composable_kernel/composable_kernel/*/*
ctuOneDefinitionRuleViolation:*src/composable_kernel/host/*/*
ctuOneDefinitionRuleViolation:*src/legacy_composable_kernel/composable_kernel/*/*
ctuOneDefinitionRuleViolation:*src/legacy_composable_kernel/host/*/*
# There are many FPs with this, let's disable this (ditto in MIGraphX)
ctuPointerArith:*test/*
duplicateCondition
Expand All @@ -767,13 +767,13 @@ enable_cppcheck(
unreadVariable:*src/kernels/static_composable_kernel/*/*
unusedScopedObject:*src/kernels/static_composable_kernel/*/*
wrongPrintfScanfArgNum:*src/kernels/static_composable_kernel/*/*
knownConditionTrueFalse:*src/composable_kernel/composable_kernel/*/*
identicalConditionAfterEarlyExit:*src/composable_kernel/composable_kernel/*/*
duplicateExpression:*src/composable_kernel/composable_kernel/*/*
multiCondition:*src/composable_kernel/composable_kernel/*/*
unreadVariable:*src/composable_kernel/composable_kernel/*/*
unreadVariable:*src/composable_kernel/host/*/*
unreadVariable:*src/composable_kernel/external/*/*
knownConditionTrueFalse:*src/legacy_composable_kernel/composable_kernel/*/*
identicalConditionAfterEarlyExit:*src/legacy_composable_kernel/composable_kernel/*/*
duplicateExpression:*src/legacy_composable_kernel/composable_kernel/*/*
multiCondition:*src/legacy_composable_kernel/composable_kernel/*/*
unreadVariable:*src/legacy_composable_kernel/composable_kernel/*/*
unreadVariable:*src/legacy_composable_kernel/host/*/*
unreadVariable:*src/legacy_composable_kernel/external/*/*
unmatchedSuppression
###################################################################
# TODO Code Quality WORKAROUND ROCm 5.3 &&
Expand Down
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -371,8 +371,8 @@ endif()
if( MIOPEN_BACKEND MATCHES "OpenCL" OR MIOPEN_BACKEND STREQUAL "HIPOC" OR MIOPEN_BACKEND STREQUAL "HIP" OR MIOPEN_BACKEND STREQUAL "HIPNOGPU")
file(GLOB_RECURSE STATIC_COMPOSABLE_KERNEL_INCLUDE "kernels/static_composable_kernel/include/*/*.hpp")
file(GLOB_RECURSE STATIC_COMPOSABLE_KERNEL_SOURCE "kernels/static_composable_kernel/src/*/*.cpp")
file(GLOB_RECURSE COMPOSABLE_KERNEL_INCLUDE "composable_kernel/composable_kernel/include/*.hpp")
file(GLOB_RECURSE COMPOSABLE_KERNEL_SOURCE "composable_kernel/composable_kernel/src/*.cpp")
file(GLOB_RECURSE COMPOSABLE_KERNEL_INCLUDE "legacy_composable_kernel/composable_kernel/include/*.hpp")
file(GLOB_RECURSE COMPOSABLE_KERNEL_SOURCE "legacy_composable_kernel/composable_kernel/src/*.cpp")
file(GLOB_RECURSE COMPOSABLE_KERNEL_DYNAMIC_ASM_SOURCE "kernels/dynamic_igemm/*.s")
file(GLOB_RECURSE COMPOSABLE_KERNEL_DYNAMIC_ASM_INCLUDE "kernels/dynamic_igemm/*.inc")
file(GLOB_RECURSE COMPOSABLE_KERNEL_DYNAMIC_CPP_SOURCE "kernels/dynamic_igemm/*.cpp")
Expand Down
4 changes: 2 additions & 2 deletions src/include/miopen/solver/implicitgemm_legacy_ck_util.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@

#include <miopen/solver/problem_description_interpreter.hpp>

#include "../composable_kernel/composable_kernel/include/utility/data_type_enum.hpp"
#include "../composable_kernel/host/solver/include/convolution_problem_descriptor.hpp"
#include "../legacy_composable_kernel/composable_kernel/include/utility/data_type_enum.hpp"
#include "../legacy_composable_kernel/host/solver/include/convolution_problem_descriptor.hpp"

namespace miopen {
namespace solver {
Expand Down
4 changes: 2 additions & 2 deletions src/reducetensor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
#include <utility>

// headers from composable kernel, to get consistent ID mapping
#include <../composable_kernel/composable_kernel/include/utility/data_type_enum.hpp>
#include <../composable_kernel/composable_kernel/include/utility/reduction_enums.hpp>
#include <../legacy_composable_kernel/composable_kernel/include/utility/data_type_enum.hpp>
#include <../legacy_composable_kernel/composable_kernel/include/utility/reduction_enums.hpp>

namespace miopen {

Expand Down
4 changes: 2 additions & 2 deletions src/solver/conv/conv_ck_igemm_fwd_v6r1_dlops_nchw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
#include <miopen/solver/implicitgemm_legacy_ck_util.hpp>
#include <miopen/solver/legacy_ck_common.hpp>

#include "../composable_kernel/host/solver/include/solver_common.hpp"
#include "../composable_kernel/host/solver/include/conv_igemm_fwd_v6r1_dlops_nchw_kcyx_nkhw.hpp"
#include "../legacy_composable_kernel/host/solver/include/solver_common.hpp"
#include "../legacy_composable_kernel/host/solver/include/conv_igemm_fwd_v6r1_dlops_nchw_kcyx_nkhw.hpp"

#define WORKAROUND_SWDEV_411729 1

Expand Down
Loading