OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tf_function
(Results
1 - 3
of
3
) sorted by null
/external/tensorflow/tensorflow/contrib/py2tf/converters/
logical_expressions.py
47
tf_function
= parser.parse_str(self.op_mapping[cmp_type]).body[0].value
49
func=
tf_function
, args=[node.left, node.comparators[0]], keywords=[])
55
tf_function
= parser.parse_str(self.op_mapping[type(
57
node = gast.Call(func=
tf_function
, args=[node.operand], keywords=[])
63
tf_function
= parser.parse_str(self.op_mapping[type(node.op)]).body[0].value
67
func=
tf_function
, args=[left, node.values[i]], keywords=[])
/external/tensorflow/tensorflow/c/
c_api_function.cc
487
TF_Function
* TF_GraphToFunction(const TF_Graph* fn_body, const char* fn_name,
526
TF_Function
*
tf_function
= new
TF_Function
();
531
&
tf_function
->fdef);
533
TF_DeleteFunction(
tf_function
);
536
return
tf_function
;
539
void TF_GraphCopyFunction(TF_Graph* g, const
TF_Function
* func,
540
const
TF_Function
* grad, TF_Status* status) {
567
int TF_GraphGetFunctions(TF_Graph* g,
TF_Function
** funcs, int max_func
[
all
...]
/external/tensorflow/tensorflow/python/eager/
function_test.py
30
from tensorflow.python.framework import function as
tf_function
505
@
tf_function
.Defun(dtypes.int32, dtypes.int32)
Completed in 278 milliseconds