mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
383 B
21 lines
383 B
2 years ago
|
#include <acl/acl.h>
|
||
|
#include <unistd.h> // fork()
|
||
|
#include <iostream>
|
||
|
|
||
|
int main(int /*argc*/, char** /*argv*/)
|
||
|
{
|
||
|
int ret = aclInit(NULL);
|
||
|
if (ret != 0)
|
||
|
{
|
||
|
std::cerr << "Failed to initialize Ascend, ret = " << ret;
|
||
|
}
|
||
|
|
||
|
ret = aclFinalize();
|
||
|
if (ret != 0)
|
||
|
{
|
||
|
std::cerr << "Failed to de-initialize Ascend, ret = " << ret;
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|