chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:40:42 +08:00
commit e25996e7db
15472 changed files with 3536181 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
cinn_cc_test(test_sized_multi_set SRCS sized_multi_set_test.cc DEPS cinncore)
cinn_cc_test(test_multi_threading SRCS multi_threading_test.cc DEPS cinncore)
@@ -0,0 +1,64 @@
// Copyright (c) 2022 CINN Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "paddle/cinn/utils/multi_threading.h"
#include <glog/logging.h>
#include <gtest/gtest.h>
#include <memory>
#include <vector>
#include "paddle/common/enforce.h"
namespace cinn {
namespace utils {
TEST(JobDispatcher, SequenceDispatcher) {
std::unique_ptr<JobDispatcher> dispatcher =
std::make_unique<SequenceDispatcher>(1, 3);
ASSERT_EQ(1, dispatcher->Next());
ASSERT_EQ(2, dispatcher->Next());
// check reach the end
ASSERT_EQ(-1, dispatcher->Next());
}
TEST(parallel_run, Basic) {
std::vector<int> results(100, -1);
auto worker_fn = [&results](int index) {
PADDLE_ENFORCE_LT(index,
results.size(),
::common::errors::InvalidArgument("invalid index!"));
results[index] = index;
};
// check process every index in the extent of [0, 100) with step 1
parallel_run(worker_fn, SequenceDispatcher(0, 100), 2);
for (int i = 0; i < 100; ++i) {
ASSERT_EQ(results[i], i);
}
// check only indexes in the extent of [0, 100) with step 3 are processed
results.assign(100, -1);
parallel_run(worker_fn, SequenceDispatcher(0, 100, 3), 3);
for (int i = 0; i < 100; ++i) {
if (i % 3 == 0) {
ASSERT_EQ(results[i], i);
} else {
ASSERT_EQ(results[i], -1);
}
}
}
} // namespace utils
} // namespace cinn
@@ -0,0 +1,82 @@
// Copyright (c) 2022 CINN Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "paddle/cinn/utils/sized_multi_set.h"
#include <gtest/gtest.h>
#include <vector>
namespace cinn {
namespace utils {
TEST(SizedMultiSet, PopMax) {
SizedMultiSet<int> sized_multi_set(5);
for (int i = 0; i < 10; ++i) {
sized_multi_set.Push(i);
if (i < 5) {
EXPECT_EQ(sized_multi_set.Size(), static_cast<size_t>(i + 1));
EXPECT_EQ(sized_multi_set.MaxValue(), i);
EXPECT_EQ(sized_multi_set.MinValue(), 0);
} else {
EXPECT_EQ(sized_multi_set.Size(), 5);
EXPECT_EQ(sized_multi_set.MaxValue(), 4);
EXPECT_EQ(sized_multi_set.MinValue(), 0);
}
}
std::vector<int> vec = sized_multi_set.ReturnAsContainer<std::vector<int>>();
for (int i = 0; i < 5; ++i) {
EXPECT_EQ(vec[i], i);
}
for (int i = 0; i < 4; ++i) {
sized_multi_set.Pop();
EXPECT_EQ(sized_multi_set.Size(), static_cast<size_t>(4 - i));
EXPECT_EQ(sized_multi_set.MaxValue(), static_cast<size_t>(3 - i));
EXPECT_EQ(sized_multi_set.MinValue(), static_cast<size_t>(0));
}
}
TEST(SizedMultiSet, PopMin) {
SizedMultiSet<int> sized_multi_set(5, /* pop_max_when_full = */ false);
for (int i = 0; i < 10; ++i) {
sized_multi_set.Push(i);
if (i < 5) {
EXPECT_EQ(sized_multi_set.Size(), static_cast<size_t>(i + 1));
EXPECT_EQ(sized_multi_set.MaxValue(), i);
EXPECT_EQ(sized_multi_set.MinValue(), 0);
} else {
EXPECT_EQ(sized_multi_set.Size(), 5);
EXPECT_EQ(sized_multi_set.MaxValue(), i);
EXPECT_EQ(sized_multi_set.MinValue(), i - 4);
}
}
std::vector<int> vec = sized_multi_set.ReturnAsContainer<std::vector<int>>();
for (int i = 0; i < 5; ++i) {
EXPECT_EQ(vec[i], i + 5);
}
for (int i = 0; i < 4; ++i) {
sized_multi_set.Pop();
EXPECT_EQ(sized_multi_set.Size(), static_cast<size_t>(4 - i));
EXPECT_EQ(sized_multi_set.MaxValue(), static_cast<size_t>(9));
EXPECT_EQ(sized_multi_set.MinValue(), static_cast<size_t>(6 + i));
}
}
} // namespace utils
} // namespace cinn