diff --git a/.github/workflows/hipdnn-clang-tidy.yml b/.github/workflows/hipdnn-clang-tidy.yml index 9499e7c3533..83fa8743f67 100644 --- a/.github/workflows/hipdnn-clang-tidy.yml +++ b/.github/workflows/hipdnn-clang-tidy.yml @@ -3,7 +3,11 @@ name: hipDNN Clang Tidy on: pull_request: paths: - - 'projects/hipdnn/**/*.{hpp,h,cpp,c}' + - 'projects/hipdnn/**/*.hpp' + - 'projects/hipdnn/**/*.h' + - 'projects/hipdnn/**/*.cpp' + - 'projects/hipdnn/**/*.c' + - 'projects/hipdnn/cmake/ClangTidy.cmake' - '.github/workflows/hipdnn-clang-tidy.yml' workflow_dispatch: diff --git a/projects/hipdnn/plugins/miopen_legacy_plugin/integration_tests/IntegrationGpuBatchnormBackward.cpp b/projects/hipdnn/plugins/miopen_legacy_plugin/integration_tests/IntegrationGpuBatchnormBackward.cpp index 086646e42f8..57c1c130613 100644 --- a/projects/hipdnn/plugins/miopen_legacy_plugin/integration_tests/IntegrationGpuBatchnormBackward.cpp +++ b/projects/hipdnn/plugins/miopen_legacy_plugin/integration_tests/IntegrationGpuBatchnormBackward.cpp @@ -254,6 +254,10 @@ TEST_P(IntegrationGpuBatchnormBackwardNhwcFp16, Correctness) runGraphTest(batchnorm::getToleranceBackward(), TensorLayout::NHWC); } + + + + INSTANTIATE_TEST_SUITE_P(Smoke, IntegrationGpuBatchnormBackwardNhwcFp16, testing::ValuesIn(getBnBwdTestCases()));