1 /* 2 * Copyright (c) 2022 HiSilicon (Shanghai) Technologies CO., LIMITED. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 #ifndef SAMPLE_SVP_MAIN_H 16 #define SAMPLE_SVP_MAIN_H 17 18 #include "hi_type.h" 19 20 #ifdef __cplusplus 21 #if __cplusplus 22 extern "C" { 23 #endif 24 #endif /* __cplusplus */ 25 26 void SAMPLE_SVP_NNIE_Cnn(void); 27 28 void SAMPLE_SVP_NNIE_Segnet(void); 29 30 void SAMPLE_SVP_NNIE_FasterRcnn(void); 31 32 void SAMPLE_SVP_NNIE_FasterRcnn_DoubleRoiPooling(void); 33 34 void SAMPLE_SVP_NNIE_Rfcn(void); 35 36 void SAMPLE_SVP_NNIE_Rfcn_File(void); 37 38 void SAMPLE_SVP_NNIE_Ssd(void); 39 40 void SAMPLE_SVP_NNIE_Yolov1(void); 41 42 void SAMPLE_SVP_NNIE_Yolov2(void); 43 44 void SAMPLE_SVP_NNIE_Yolov3(void); 45 46 void SAMPLE_SVP_NNIE_Lstm(void); 47 48 void SAMPLE_SVP_NNIE_Pvanet(void); 49 50 void SAMPLE_SVP_NNIE_Cnn_HandleSig(void); 51 52 void SAMPLE_SVP_NNIE_Segnet_HandleSig(void); 53 54 void SAMPLE_SVP_NNIE_FasterRcnn_HandleSig(void); 55 56 void SAMPLE_SVP_NNIE_Rfcn_HandleSig(void); 57 58 void SAMPLE_SVP_NNIE_Rfcn_HandleSig_File(void); 59 60 void SAMPLE_SVP_NNIE_Ssd_HandleSig(void); 61 62 void SAMPLE_SVP_NNIE_Yolov1_HandleSig(void); 63 64 void SAMPLE_SVP_NNIE_Yolov2_HandleSig(void); 65 66 void SAMPLE_SVP_NNIE_Yolov3_HandleSig(void); 67 68 void SAMPLE_SVP_NNIE_Lstm_HandleSig(void); 69 70 void SAMPLE_SVP_NNIE_Pvanet_HandleSig(void); 71 72 #ifdef __cplusplus 73 #if __cplusplus 74 } 75 #endif 76 #endif /* __cplusplus */ 77 78 #endif /* SAMPLE_SVP_MAIN_H */ 79