ONE - On-device Neural Engine
Loading...
Searching...
No Matches
dummy-infer.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} dummy-infer dummy output!!!

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

27{
28 if (argc != 2)
29 return EXIT_FAILURE;
30
31 std::cout << "dummy-infer dummy output!!!" << std::endl;
32
33 return EXIT_SUCCESS;
34}