Searched defs:noinline (Results 1 - 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/compiler/jit/
H A Dmark_for_compilation_pass_test.cc196 FunctionDef noinline = compilable; local
197 noinline.mutable_signature()->set_name("NoInlineFn");
198 AddAttr("_noinline", bool(true), noinline.mutable_attr());
203 *flib.add_function() = noinline;
H A Dmark_for_compilation_pass.cc127 bool noinline = false; local
128 if (GetNodeAttr(AttrSlice(&fdef.attr()), "_noinline", &noinline).ok() &&
129 noinline) {
135 VLOG(2) << "Can't compile noinline function: " << fdef.DebugString();
/external/tensorflow/tensorflow/python/ops/
H A Dnn_impl.py292 @function.Defun(shape_func=_swish_shape, func_name="swish_grad", noinline=True)
303 # @Defun decorator with noinline=True so that sigmoid(features) is re-computed
310 noinline=True) variable
/external/clang/test/CodeGenCXX/
H A Ddllimport.cpp242 // MSC-DAG: declare dllimport void @"\01?noinline@@YAXXZ"()
244 __declspec(dllimport) __attribute__((noinline)) inline void noinline() {} function
245 USE(noinline)
/external/tensorflow/tensorflow/core/common_runtime/
H A Dfunction.cc1314 bool noinline; local
1315 if (fld->GetAttr(*node, kNoInlineAttr, &noinline).ok() && noinline) {
1316 VLOG(3) << "noinline: " << node->DebugString();

Completed in 184 milliseconds