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.
62 lines
1.9 KiB
62 lines
1.9 KiB
/**
|
|
* Copyright 2019-2021 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 <gmock/gmock.h>
|
|
#include <vector>
|
|
#include <memory>
|
|
|
|
#define protected public
|
|
#define private public
|
|
#include "hybrid/node_executor/compiledsubgraph/known_node_executor.h"
|
|
#undef private
|
|
#undef protected
|
|
#include "graph/manager/graph_mem_allocator.h"
|
|
|
|
using namespace std;
|
|
using namespace testing;
|
|
using namespace ge;
|
|
using namespace hybrid;
|
|
|
|
class UnknownNodeExecutorTest : public testing::Test {
|
|
protected:
|
|
void SetUp() {}
|
|
void TearDown() {}
|
|
};
|
|
|
|
namespace {
|
|
class KnownNodeTaskMock : public KnownNodeTask {
|
|
public:
|
|
KnownNodeTaskMock(std::shared_ptr<DavinciModel> davinci_model): KnownNodeTask(davinci_model) {};
|
|
~KnownNodeTaskMock() override = default;
|
|
MOCK_METHOD0(DoInitDavinciModel, Status());
|
|
};
|
|
}
|
|
|
|
TEST_F(UnknownNodeExecutorTest, test_init_davinci_model) {
|
|
auto davinci_model = std::make_shared<DavinciModel>(0, nullptr);
|
|
davinci_model->SetDeviceId(0);
|
|
davinci_model->SetKnownNode(true);
|
|
|
|
auto ge_model = make_shared<GeModel>();
|
|
AttrUtils::SetInt(ge_model, ATTR_MODEL_VAR_SIZE, 0);
|
|
AttrUtils::SetInt(ge_model, ATTR_MODEL_MEMORY_SIZE, 1024);
|
|
davinci_model->Assign(ge_model);
|
|
|
|
KnownNodeTaskMock mock(davinci_model);
|
|
EXPECT_CALL(mock, DoInitDavinciModel).WillOnce(::testing::Return(SUCCESS));
|
|
ASSERT_EQ(mock.InitDavinciModel(), SUCCESS);
|
|
} |