已合并
concat重复头文件删除 #4102
concat重复头文件删除 #4102
已合并
zhuzemao创建于 7月16日
1 个文件变更+0-38
Dconversion/concat/op_host/op_api/aclnn_cat.h+0-38
@@ -1,38 +0,0 @@
1-/**
2- * Copyright (c) 2025 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-#ifndef OP_API_INC_CAT_H_
12-#define OP_API_INC_CAT_H_
13- 
14-#include "aclnn/aclnn_base.h"
15-#include "aclnn_util.h"
16- 
17-#ifdef __cplusplus
18-extern "C" {
19-#endif
20- 
21-/**
22- * @brief aclnnAdaptiveAvgPool2d的第一段接口,根据具体的计算流程,计算workspace大小。
23- * @domain aclnn_ops_infer
24- */
25-ACLNN_API aclnnStatus aclnnCatGetWorkspaceSize(
26- const aclTensorList* tensors, int64_t dim, aclTensor* out, uint64_t* workspaceSize, aclOpExecutor** executor);
27- 
28-/**
29- * @brief aclnnCat的第二段接口,用于执行计算。
30- */
31-ACLNN_API aclnnStatus
32-aclnnCat(void* workspace, uint64_t workspaceSize, aclOpExecutor* executor, const aclrtStream stream);
33- 
34-#ifdef __cplusplus
35-}
36-#endif
37- 
38-#endif // OP_API_INC_CAT_H_