Skip to content

Commit

Permalink
Update ops-related pbtxt files.
Browse files Browse the repository at this point in the history
Change: 118948070
  • Loading branch information
A. Unique TensorFlower authored and tensorflower-gardener committed Apr 4, 2016
1 parent ac16ae0 commit 8fb5a9e
Show file tree
Hide file tree
Showing 2 changed files with 104 additions and 0 deletions.
50 changes: 50 additions & 0 deletions tensorflow/core/ops/compat/ops_history.v0.pbtxt
Original file line number Diff line number Diff line change
Expand Up @@ -7037,6 +7037,56 @@ op {
}
is_stateful: true
}
op {
name: "Igamma"
input_arg {
name: "a"
type_attr: "T"
}
input_arg {
name: "x"
type_attr: "T"
}
output_arg {
name: "z"
type_attr: "T"
}
attr {
name: "T"
type: "type"
allowed_values {
list {
type: DT_FLOAT
type: DT_DOUBLE
}
}
}
}
op {
name: "Igammac"
input_arg {
name: "a"
type_attr: "T"
}
input_arg {
name: "x"
type_attr: "T"
}
output_arg {
name: "z"
type_attr: "T"
}
attr {
name: "T"
type: "type"
allowed_values {
list {
type: DT_FLOAT
type: DT_DOUBLE
}
}
}
}
op {
name: "Imag"
input_arg {
Expand Down
54 changes: 54 additions & 0 deletions tensorflow/core/ops/ops.pbtxt
Original file line number Diff line number Diff line change
Expand Up @@ -4345,6 +4345,60 @@ op {
description: "To use, enqueue strings in a Queue. ReaderRead will take the front\nwork string and output (work, work)."
is_stateful: true
}
op {
name: "Igamma"
input_arg {
name: "a"
type_attr: "T"
}
input_arg {
name: "x"
type_attr: "T"
}
output_arg {
name: "z"
type_attr: "T"
}
attr {
name: "T"
type: "type"
allowed_values {
list {
type: DT_FLOAT
type: DT_DOUBLE
}
}
}
summary: "Compute the lower regularized incomplete Gamma function `Q(a, x)`."
description: "The lower regularized incomplete Gamma function is defined as:\n\n```\nP(a, x) = gamma(a, x) / Gamma(x) = 1 - Q(a, x)\n```\nwhere\n```\ngamma(a, x) = int_{0}^{x} t^{a-1} exp(-t) dt\n```\nis the lower incomplete Gamma function.\n\nNote, above `Q(a, x)` (`Igammac`) is the upper regularized complete\nGamma function."
}
op {
name: "Igammac"
input_arg {
name: "a"
type_attr: "T"
}
input_arg {
name: "x"
type_attr: "T"
}
output_arg {
name: "z"
type_attr: "T"
}
attr {
name: "T"
type: "type"
allowed_values {
list {
type: DT_FLOAT
type: DT_DOUBLE
}
}
}
summary: "Compute the upper regularized incomplete Gamma function `Q(a, x)`."
description: "The upper regularized incomplete Gamma function is defined as:\n\n```\nQ(a, x) = Gamma(a, x) / Gamma(x) = 1 - P(a, x)\n```\nwhere\n```\nGamma(a, x) = int_{x}^{\\infty} t^{a-1} exp(-t) dt\n```\nis the upper incomplete Gama function.\n\nNote, above `P(a, x)` (`Igamma`) is the lower regularized complete\nGamma function."
}
op {
name: "Imag"
input_arg {
Expand Down

0 comments on commit 8fb5a9e

Please sign in to comment.