Update ops-related pbtxt files.

Change: 140903714
This commit is contained in:
A. Unique TensorFlower 2016-12-02 15:47:55 -08:00 committed by TensorFlower Gardener
parent 91a33176d6
commit 4bdf4511a1
2 changed files with 25 additions and 1 deletions

View File

@ -8,6 +8,23 @@ op {
} }
} }
} }
op {
name: "Abort"
attr {
name: "error_msg"
type: "string"
default_value {
s: ""
}
}
attr {
name: "exit_without_error"
type: "bool"
default_value {
b: false
}
}
}
op { op {
name: "Abs" name: "Abs"
input_arg { input_arg {

View File

@ -8,7 +8,14 @@ op {
} }
description: "A string which is the message associated with the exception." description: "A string which is the message associated with the exception."
} }
summary: "Raise a exception to abort the process when called." attr {
name: "exit_without_error"
type: "bool"
default_value {
b: false
}
}
summary: "Raise a exception to abort the process when called. If exit_without_error is true, the process will exit normally, otherwise it will exit with a SIGABORT signal."
description: "Returns nothing but an exception." description: "Returns nothing but an exception."
} }
op { op {