Skip to content

Commit

Permalink
Reduce number of circular buffering tests (#3276)
Browse files Browse the repository at this point in the history
  • Loading branch information
zasdfgbnm authored Oct 25, 2024
1 parent d3782df commit 2e4ed54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/cpp/test_circular_buffering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ TEST_P(CircularBufferingTest, NoSync) {
// Test circular buffer from 2 to 10 stages
auto StagesAndPrefetches() {
std::vector<StageAndPrefetch> values;
for (int64_t i : c10::irange(2, 10)) {
for (int64_t i : {2, 5, 10}) {
for (int64_t j : c10::irange(-i, i)) {
values.emplace_back(i, j);
}
Expand Down Expand Up @@ -1768,7 +1768,7 @@ TEST_P(TmaCircularBufferingTest, MatmulWithBroadcastedInput) {
// Test circular buffer from 2 to 5 stages
auto tmaCircularBufferingParams() {
std::vector<TmaCircularBufferingParams> values;
for (int64_t i : c10::irange(2, 5)) {
for (int64_t i : {2, 5}) {
for (int64_t j : c10::irange(-i, i)) {
for (int64_t m : {128, 500, 1024}) {
for (int64_t n : {128, 1024}) {
Expand Down

0 comments on commit 2e4ed54

Please sign in to comment.