ONE - On-device Neural Engine
Loading...
Searching...
No Matches
dummy-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 
)

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

./dummy-profile ${INPUT_NAME} ./dummy-profile –target ${TARGET_NAME} ${INPUT_NAME}

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

29{
30 if (argc != 2 and argc != 4)
31 return EXIT_FAILURE;
32
33 if (argc == 2)
34 {
35 std::cout << "dummy-profile dummy output!!!" << std::endl;
36 }
37 if (argc == 4)
38 {
39 std::string opt_T{"--target"};
40 std::string argv_1{argv[1]};
41 if (opt_T != argv_1)
42 return EXIT_FAILURE;
43 std::string target_name{argv[2]};
44
45 std::cout << "dummy-profile with " << target_name << " target" << std::endl;
46 }
47
48 return EXIT_SUCCESS;
49}