/* Copyright (c) 2021 PaddlePaddle 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 #include #include "gtest/gtest.h" #include "paddle/pten/core/utils/intrusive_ptr.h" #include "paddle/pten/core/utils/intrusive_ref_counter.h" namespace pten { namespace tests { struct SharedObject : public intrusive_ref_counter { int i{0}; }; TEST(intrusive_ref_counter, async) { SharedObject obj; const size_t num{100}; std::vector> results; auto add_ref_and_release = [](const SharedObject* p) { intrusive_ptr_add_ref(p); intrusive_ptr_release(p); }; for (size_t i = 0; i < num; ++i) { results.emplace_back(std::async(add_ref_and_release, &obj)); } for (auto& result : results) { result.get(); } CHECK_EQ(obj.use_count(), 1u); } TEST(intrusive_ptr, default_ctor) { intrusive_ptr p; CHECK(p == nullptr); } TEST(intrusive_ptr, private_ctor) { auto p = make_intrusive(); const auto* ptr0 = p.get(); auto p1 = std::move(p); intrusive_ptr> p2(std::move(p1)); const auto* ptr1 = p2.get(); CHECK_EQ(ptr0, ptr1); } TEST(intrusive_ptr, reset_with_obj) { SharedObject obj; obj.i = 1; intrusive_ptr p; p.reset(&obj, true); CHECK_EQ(p->i, obj.i); } TEST(intrusive_ptr, reset_with_ptr) { auto* ptr = new SharedObject; ptr->i = 1; intrusive_ptr p; p.reset(ptr, false); CHECK_EQ((*p).i, ptr->i); p.reset(); CHECK(p == nullptr); } TEST(intrusive_ptr, op_comp) { auto p = make_intrusive(); auto copy = copy_intrusive(p); auto null = intrusive_ptr(); auto p1 = make_intrusive(); CHECK(p == copy); CHECK(p != p1); CHECK(p == copy.get()); CHECK(p != p1.get()); CHECK(p.get() == copy); CHECK(p.get() != p1); CHECK(null == nullptr); CHECK(nullptr == null); CHECK(p != nullptr); CHECK(nullptr != p); } } // namespace tests } // namespace pten