ONE - On-device Neural Engine
Loading...
Searching...
No Matches
dummy-inferV2.cpp File Reference
#include <iostream>

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

dummy-infer only tests its interface rather than its functionality.

./dummy-infer ${INPUT_NAME} Do inference of ${INPUT_NAME}

Definition at line 26 of file dummy-inferV2.cpp.

27{
28 if (argc != 2)
29 return EXIT_FAILURE;
30
31 std::cout << "Do inference of " + std::string(argv[1]) << std::endl;
32
33 return EXIT_SUCCESS;
34}