mock_idevice.h 3.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
/*
 * Copyright (c) 2022 Huawei Device 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.
 */
#ifndef MOCK_IDEVICE_H
#define MOCK_IDEVICE_H

#include <iostream>
#include <hdi_support.h>
#include <string_ex.h>
#include <hdf_base.h>

#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include "mindir_lite_graph.h"
#include "mindir.h"

#include "securec.h"
#include "refbase.h"
#include "common/log.h"
#include "frameworks/native/hdi_interfaces.h"
#include "frameworks/native/memory_manager.h"
#include "ashmem.h"

namespace OHOS {
namespace HDI {
namespace Nnrt {
namespace V1_0 {

class MockIDevice : public INnrtDevice {
public:
    int32_t GetSupportedOperation(const Model& model, std::vector<bool>& ops) override;

    int32_t IsFloat16PrecisionSupported(bool& isSupported) override;

    int32_t IsPerformanceModeSupported(bool& isSupported) override;

    int32_t IsPrioritySupported(bool& isSupported) override;

    int32_t IsDynamicInputSupported(bool& isSupported) override;

    int32_t IsModelCacheSupported(bool& isSupported) override;

    int32_t AllocateBuffer(uint32_t length, SharedBuffer &buffer) override;

    int32_t ReleaseBuffer(const SharedBuffer &buffer) override;

    int32_t GetDeviceName(std::string& name) override;

    int32_t GetVendorName(std::string& name) override;

    int32_t GetDeviceType(DeviceType& deviceType) override;

    int32_t GetDeviceStatus(DeviceStatus& status) override;

    int32_t GetVersion(uint32_t &majorVersion, uint32_t &minorVersion) override;

    int32_t PrepareModel(const Model& model, const ModelConfig& config, sptr<IPreparedModel>& preparedModel) override;

    int32_t PrepareModelFromModelCache(const std::vector<SharedBuffer>& modelCache, const ModelConfig& config,
         sptr<IPreparedModel>& preparedModel) override;

T
tangshihua 已提交
73
    int32_t MemoryCopy(float* data, uint32_t length);
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93

    void SetFP16Supported(bool isSupported);

    void SetPerformanceSupported(bool isSupported);

    void SetPrioritySupported(bool isSupported);

    void SetModelCacheSupported(bool isSupported);

    void SetOperationsSupported(std::vector<bool> isSupported);

    void SetDynamicInputSupported(bool isSupported);

    static MockIDevice *GetInstance();

    MockIDevice() = default;
    virtual ~MockIDevice();

private:
    std::unordered_map<int, sptr<Ashmem>> m_ashmems;
T
tangshihua 已提交
94
    int m_bufferFd;
95 96 97 98 99 100 101 102 103 104 105 106 107 108
    bool m_fp16 = true;
    bool m_performance = true;
    bool m_priority = true;
    bool m_cache = true;
    bool m_dynamic = true;
    std::vector<bool> m_operations{true};
};

class MockIPreparedModel : public IPreparedModel {
public:
    int32_t ExportModelCache(std::vector<SharedBuffer>& modelCache) override;
    int32_t Run(const std::vector<IOTensor>& inputs, const std::vector<IOTensor>& outputs,
    std::vector<std::vector<int32_t>>& outputsDims, std::vector<bool>& isOutputBufferEnough) override;
    int32_t GetVersion(uint32_t &majorVersion, uint32_t &minorVersion) override;
T
tangshihua 已提交
109
    MockIPreparedModel() = default;
110 111 112 113 114 115 116
};

} // namespace V1_0
} // namespace Nnrt
} // namespace HDI
} // namespace OHOS
#endif // MOCK_IDEVICE_H