ONE - On-device Neural Engine
Loading...
Searching...
No Matches
dummyV3-profile.cpp File Reference
#include <iostream>
#include <fstream>
#include <string>

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

dummyV3-profile only tests its interface rather than its functionality.

./dummyV3-profile ${INPUT_TO_PRINT} dummyV3-profile with ${INPUT_TO_PRINT}

Definition at line 28 of file dummyV3-profile.cpp.

29{
30 if (argc != 2)
31 return EXIT_FAILURE;
32
33 std::string input_to_print{argv[1]};
34
35 std::cout << "dummyV3-profile with " << input_to_print << std::endl;
36
37 return EXIT_SUCCESS;
38}