Line data Source code
1 : /**
2 : * Copyright (c) 2026 Huawei Technologies Co., Ltd.
3 : * This program is free software, you can redistribute it and/or modify it under the terms and conditions of
4 : * CANN Open Software License Agreement Version 2.0 (the "License").
5 : * Please refer to the License for details. You may not use this file except in compliance with the License.
6 : * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
7 : * INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
8 : * See LICENSE in the root of the software repository for the full text of the License.
9 : */
10 :
11 : #include "ccu_res.h"
12 :
13 1 : CcuResult HcommCcuInsResDescCreate(uint32_t, HcommCcuResDescHandle *)
14 : {
15 1 : return CcuResult::CCU_E_NOT_SUPPORT;
16 : }
17 :
18 1 : CcuResult HcommCcuInsResDescDestroy(HcommCcuResDescHandle)
19 : {
20 1 : return CcuResult::CCU_E_NOT_SUPPORT;
21 : }
22 :
23 1 : CcuResult HcommCcuInsResDescQueryDieId(HcommCcuResDescHandle, uint32_t *)
24 : {
25 1 : return CcuResult::CCU_E_NOT_SUPPORT;
26 : }
27 :
28 1 : CcuResult HcommCcuInsResDescSetNum(HcommCcuResDescHandle, HcommCcuResType, uint32_t)
29 : {
30 1 : return CcuResult::CCU_E_NOT_SUPPORT;
31 : }
32 :
33 1 : CcuResult HcommCcuInsResDescQueryNum(HcommCcuResDescHandle, HcommCcuResType, uint32_t *)
34 : {
35 1 : return CcuResult::CCU_E_NOT_SUPPORT;
36 : }
37 :
38 1 : CcuResult HcommCcuQueryRemainResDesc(HcommCcuResDescHandle)
39 : {
40 1 : return CcuResult::CCU_E_NOT_SUPPORT;
41 : }
42 :
43 1 : CcuResult HcommCcuKernelQueryResReq(const void *, const void **, uint32_t, HcommCcuResDescHandle)
44 : {
45 1 : return CcuResult::CCU_E_NOT_SUPPORT;
46 : }
|