You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
graphengine/tests/ut/ge/single_op/stream_resource_unittest.cc

88 lines
2.3 KiB

/**
* Copyright 2019-2020 Huawei Technologies Co., Ltd
*
* 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 <gtest/gtest.h>
#include <vector>
#include "runtime/rt.h"
#define protected public
#define private public
#include "single_op/stream_resource.h"
#undef private
#undef protected
using namespace std;
using namespace testing;
using namespace ge;
class UtestStreamResource : public testing::Test {
protected:
void SetUp() {}
void TearDown() {}
rtStream_t stream;
};
/*
TEST_F(UtestStreamResource, test_cache_op) {
StreamResource res((uintptr_t)1);
auto *op = new SingleOp();
string stub_name = "stubFunc";
const void *key = stub_name.c_str();
ASSERT_EQ(res.GetOperator(key), nullptr);
res.CacheOperator(key, op);
ASSERT_NE(res.GetOperator(key), nullptr);
}
*/
TEST_F(UtestStreamResource, test_malloc_memory) {
StreamResource res((uintptr_t)1);
string purpose("test");
ASSERT_NE(res.MallocMemory(purpose, 100), nullptr);
ASSERT_NE(res.MallocMemory(purpose, 100), nullptr);
ASSERT_NE(res.MallocMemory(purpose, 100), nullptr);
}
/*
TEST_F(UtestStreamResource, test_do_malloc_memory) {
size_t max_allocated = 0;
vector<uint8_t *> allocated;
string purpose("test");
StreamResource res((uintptr_t)1);
uint8_t *ret = res.DoMallocMemory(purpose, 100, max_allocated, allocated);
ASSERT_EQ(allocated.size(), 1);
ASSERT_NE(allocated.back(), nullptr);
ASSERT_EQ(max_allocated, 100);
res.DoMallocMemory(purpose, 50, max_allocated, allocated);
res.DoMallocMemory(purpose, 99, max_allocated, allocated);
res.DoMallocMemory(purpose, 100, max_allocated, allocated);
ASSERT_EQ(allocated.size(), 1);
ASSERT_EQ(max_allocated, 100);
res.DoMallocMemory(purpose, 101, max_allocated, allocated);
ASSERT_EQ(allocated.size(), 2);
ASSERT_EQ(max_allocated, 101);
for (auto res : allocated) {
rtFree(res);
}
}
*/