Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions tsl/platform/init_main.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,17 @@ limitations under the License.
#ifndef TENSORFLOW_TSL_PLATFORM_INIT_MAIN_H_
#define TENSORFLOW_TSL_PLATFORM_INIT_MAIN_H_

#include <string>
#include <vector>
namespace tsl {
namespace port {

void InitMain(const char* usage, int* argc, char*** argv);

const std::vector<std::string>& GetArgvs();

const char* GetArgv0();

} // namespace port
} // namespace tsl

Expand Down
Loading