Move TF_Status to the last argument of StartTracing api

PiperOrigin-RevId: 251497647
This commit is contained in:
A. Unique TensorFlower 2019-06-04 12:57:50 -07:00 committed by TensorFlower Gardener
parent f5e3a2cff1
commit 80ad7b024a
2 changed files with 6 additions and 6 deletions

View File

@ -85,10 +85,10 @@ void TFE_ContextDisableGraphCollection(TFE_Context* ctx) {
}
bool TFE_ProfilerClientStartTracing(const char* service_addr,
const char* logdir, TF_Status* status,
const char* worker_list,
const char* logdir, const char* worker_list,
bool include_dataset_ops, int duration_ms,
int num_tracing_attempts) {
int num_tracing_attempts,
TF_Status* status) {
tensorflow::Status s =
tensorflow::profiler::client::ValidateHostPortPair(service_addr);
if (!s.ok()) {

View File

@ -84,9 +84,9 @@ TF_CAPI_EXPORT extern void TFE_ContextDisableGraphCollection(TFE_Context* ctx);
// tensorflow/contrib/tpu/profiler/capture_tpu_profile instead following
// https://cloud.google.com/tpu/docs/cloud-tpu-tools#capture_trace.
TF_CAPI_EXPORT extern bool TFE_ProfilerClientStartTracing(
const char* service_addr, const char* logdir, TF_Status* status,
const char* worker_list, bool include_dataset_ops, int duration_ms,
int num_tracing_attempts);
const char* service_addr, const char* logdir, const char* worker_list,
bool include_dataset_ops, int duration_ms, int num_tracing_attempts,
TF_Status* status);
// TODO(fishx): Move these monitoring APIs into a separate file.
// -----------------------------------------------------------------------------