aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/platform/init_main.h
blob: ce3d1fbc2fe92c8f331eef3035c0772d7fb01122 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef TENSORFLOW_PLATFORM_INIT_MAIN_H_
#define TENSORFLOW_PLATFORM_INIT_MAIN_H_

namespace tensorflow {
namespace port {

// Platform-specific initialization routine that may be invoked by a
// main() program that uses TensorFlow.
//
// Default implementation does nothing.
void InitMain(const char* usage, int* argc, char*** argv);

}  // namespace port
}  // namespace tensorflow

#endif  // TENSORFLOW_PLATFORM_INIT_MAIN_H_