From 40958adf8bad8fd9fefe591ee55a381f7bbb6fea Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Wed, 18 Sep 2019 12:04:56 +0100 Subject: COMPMID-2663: Interface to unbound mappings. Adds an interface to ILifetimeManager to unbound a list of mappings. Change-Id: I927fa1e0f83e6be778fd36794439f51d36dde408 Signed-off-by: Georgios Pinitas Reviewed-on: https://review.mlplatform.org/c/1988 Tested-by: Arm Jenkins Reviewed-by: Michalis Spyrou Comments-Addressed: Arm Jenkins --- tests/validation/UNIT/LifetimeManager.cpp | 125 ++++++++++++++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 tests/validation/UNIT/LifetimeManager.cpp (limited to 'tests/validation/UNIT') diff --git a/tests/validation/UNIT/LifetimeManager.cpp b/tests/validation/UNIT/LifetimeManager.cpp new file mode 100644 index 0000000000..d4c0a51346 --- /dev/null +++ b/tests/validation/UNIT/LifetimeManager.cpp @@ -0,0 +1,125 @@ +/* + * Copyright (c) 2019 ARM Limited. + * + * SPDX-License-Identifier: MIT + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to + * deal in the Software without restriction, including without limitation the + * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + * sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +#include "arm_compute/runtime/BlobLifetimeManager.h" +#include "arm_compute/runtime/Memory.h" +#include "arm_compute/runtime/MemoryGroup.h" +#include "arm_compute/runtime/MemoryManagerOnDemand.h" +#include "arm_compute/runtime/PoolManager.h" +#include "tests/framework/Asserts.h" +#include "tests/framework/Macros.h" +#include "tests/framework/datasets/Datasets.h" +#include "tests/validation/Validation.h" +#include "utils/TypePrinter.h" + +namespace arm_compute +{ +namespace test +{ +namespace validation +{ +namespace +{ +/** Mock class of memory manageable objects */ +class MockMemoryManageable : public IMemoryManageable +{ +public: + void associate_memory_group(IMemoryGroup *memory_group) override + { + } +}; +/** Creates a lifetime of three objects where the two of them can share the same underlying within the given scope + * + * @warning Contents and pointers of the objects registered will be invalid at the end of the function thus do not dereference. + * + * @param[in] mg The memory group under which the manageable objects will be registered + */ +void generate_lifetime_info(MemoryGroup &mg) +{ + MockMemoryManageable a{}, b{}, c{}; + Memory m_a{}, m_b{}, m_c{}; + + // Generate a custom lifetime for the objects + mg.manage(&a); + mg.manage(&b); + mg.finalize_memory(&a, m_a, 12U /* size */, 8U /* alignment */); + mg.manage(&c); + mg.finalize_memory(&b, m_b, 128U /* size */, 16U /* alignment */); + mg.finalize_memory(&c, m_c, 32U /* size */, 0U /* alignment */); +} +} // namespace +TEST_SUITE(UNIT) +TEST_SUITE(LifetimeManager) + +/** Validate memory group register */ +TEST_CASE(MemoryGroupRegister, framework::DatasetMode::ALL) +{ + auto lft_mgr = std::make_shared(); + auto pool_mgr = std::make_shared(); + auto mm = std::make_shared(lft_mgr, pool_mgr); + MemoryGroup mg(mm); + + // Register group + lft_mgr->register_group(&mg); + + // Generate lifetime information + generate_lifetime_info(mg); + + // Validate lifetime manager state + ARM_COMPUTE_EXPECT(lft_mgr->info().size() == 2, framework::LogLevel::ERRORS); + ARM_COMPUTE_EXPECT(lft_mgr->info()[0].size == 128, framework::LogLevel::ERRORS); + ARM_COMPUTE_EXPECT(lft_mgr->info()[0].alignment == 16, framework::LogLevel::ERRORS); + ARM_COMPUTE_EXPECT(lft_mgr->info()[0].owners == 1, framework::LogLevel::ERRORS); + ARM_COMPUTE_EXPECT(lft_mgr->info()[1].size == 32, framework::LogLevel::ERRORS); + ARM_COMPUTE_EXPECT(lft_mgr->info()[1].alignment == 8, framework::LogLevel::ERRORS); + ARM_COMPUTE_EXPECT(lft_mgr->info()[1].owners == 2, framework::LogLevel::ERRORS); + ARM_COMPUTE_EXPECT(mg.mappings().size() == 3, framework::LogLevel::ERRORS); +} + +/** Validate memory group release */ +TEST_CASE(MemoryGroupRelease, framework::DatasetMode::ALL) +{ + auto lft_mgr = std::make_shared(); + auto pool_mgr = std::make_shared(); + auto mm = std::make_shared(lft_mgr, pool_mgr); + MemoryGroup mg(mm); + + // Register group + lft_mgr->register_group(&mg); + + // Generate lifetime information + generate_lifetime_info(mg); + + // Check group mappings + ARM_COMPUTE_EXPECT(mg.mappings().size() == 3, framework::LogLevel::ERRORS); + + // Release group and validate its mappings + lft_mgr->release_group(&mg); + ARM_COMPUTE_EXPECT(mg.mappings().size() == 0, framework::LogLevel::ERRORS); +} + +TEST_SUITE_END() // LifetimeManager +TEST_SUITE_END() +} // namespace validation +} // namespace test +} // namespace arm_compute -- cgit v1.2.1