44a5c5b0
Hu Chunming
优化stream_
|
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
73
74
75
76
77
78
79
80
81
|
#include <iostream>
#include <string>
#include "acl/acl_mdl.h"
#include "acl/acl_base.h"
#include "acl/acl_rt.h"
#include "acl/acl.h"
#include "acl/ops/acl_dvpp.h"
#include "acl/dvpp/hi_dvpp.h"
using namespace std;
bool test() {
aclrtContext context_{nullptr};
acldvppChannelDesc *dvppChannelDesc_ {nullptr};
aclError ret = aclrtCreateContext(&context_, 0);
if (ret != ACL_ERROR_NONE) {
return false;
}
do
{
dvppChannelDesc_ = acldvppCreateChannelDesc();
ret = acldvppCreateChannel(dvppChannelDesc_);
if (ret != ACL_ERROR_NONE) {
return false;
}
ret = acldvppSetChannelDescMode(dvppChannelDesc_, DVPP_CHNMODE_VPC);
if (ret != ACL_ERROR_NONE) {
return false;
}
} while (0);
if(context_){
aclrtSetCurrentContext(context_);
if (dvppChannelDesc_) {
(void)acldvppDestroyChannel(dvppChannelDesc_);
(void)acldvppDestroyChannelDesc(dvppChannelDesc_);
dvppChannelDesc_ = nullptr;
}
aclrtDestroyContext(context_);
}
printf("end.\n");
return true;
}
int main() {
printf("start....\n");
aclInit(nullptr);
char ch = 'a';
while (ch != 'q') {
ch = getchar();
switch (ch)
{
case 'a':
test();
break;
case 'c':
test();
break;
default:
break;
}
}
aclFinalize();
return 0;
}
|