Skip to content

Commit

Permalink
3 test cases for backward spatial single and multiple
Browse files Browse the repository at this point in the history
  • Loading branch information
xinlipn committed Dec 19, 2024
1 parent 6cf2959 commit 70c28bc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/gtest/bn_test_data.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,10 @@ inline std::vector<BNTestCase> NetworkLarge()
{64, 64, 112, 112, miopenBNSpatial, miopen::batchnorm::Direction::ForwardInference, 1, 0},
{64, 64, 56, 56, miopenBNSpatial, miopen::batchnorm::Direction::Backward, 0, 1},
{64, 64, 56, 56, miopenBNSpatial, miopen::batchnorm::Direction::ForwardTraining, 1, 1},
{64, 64, 56, 56, miopenBNSpatial, miopen::batchnorm::Direction::ForwardInference, 1, 0}};
{64, 64, 56, 56, miopenBNSpatial, miopen::batchnorm::Direction::ForwardInference, 1, 0},
{128, 256, 14, 14, miopenBNSpatial, miopen::batchnorm::Direction::Backward, 0, 1},
{128, 256, 16, 16, miopenBNSpatial, miopen::batchnorm::Direction::Backward, 0, 1},
{670, 1, 224, 224, miopenBNSpatial, miopen::batchnorm::Direction::Backward, 0, 1}};
}

template <>
Expand Down

0 comments on commit 70c28bc

Please sign in to comment.