Home
last modified time | relevance | path

Searched refs:Eager (Results 1 – 24 of 24) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DDomTreeUpdater.cpp159 if (Strategy == UpdateStrategy::Eager) { in recalculate()
207 if (Strategy == UpdateStrategy::Eager || DeletedBBs.empty()) in isBBPendingDeletion()
332 if (Strategy == UpdateStrategy::Eager) { in insertEdge()
353 if (Strategy == UpdateStrategy::Eager) { in insertEdgeRelaxed()
378 if (Strategy == UpdateStrategy::Eager) { in deleteEdge()
399 if (Strategy == UpdateStrategy::Eager) { in deleteEdgeRelaxed()
411 if (Strategy == DomTreeUpdater::UpdateStrategy::Eager) in dropOutOfDateUpdates()
447 if (Strategy == UpdateStrategy::Eager) { in dump()
/external/v8/src/compiler/
Dcommon-operator.cc511 V(Eager, MinusZero) \
512 V(Eager, WrongMap) \
517 V(Eager, DivisionByZero, NoSafetyCheck) \
518 V(Eager, DivisionByZero, SafetyCheck) \
519 V(Eager, Hole, NoSafetyCheck) \
520 V(Eager, Hole, SafetyCheck) \
521 V(Eager, MinusZero, NoSafetyCheck) \
522 V(Eager, MinusZero, SafetyCheck) \
523 V(Eager, Overflow, NoSafetyCheck) \
524 V(Eager, Overflow, SafetyCheck) \
[all …]
/external/tensorflow/tensorflow/contrib/eager/
DREADME.md1 # Eager Execution
3 Eager execution provides an imperative interface to TensorFlow (similar to
20 Eager execution makes this much simpler:
/external/tensorflow/tensorflow/contrib/eager/python/g3doc/
Dguide.md1 # Eager execution
3 Eager execution is a feature that makes TensorFlow execute operations
/external/tensorflow/tensorflow/python/autograph/
DREADME.md7 With AutoGraph, you can write [Eager style](https://www.tensorflow.org/guide/eager) code in a conci…
137 …ct result, send us a minimal reproduction case that includes the original Eager code, the inputs a…
138 …t running, send us a minimal reproduction case that includes the original Eager code, the inputs a…
139 …ted code is not compiling, send us two minimal pieces of code. First, the Eager code that you woul…
DLIMITATIONS.md3 TF AutoGraph converts Eager Python code into TensorFlow graph-mode code. For example, users write c…
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DDomTreeUpdater.h29 enum class UpdateStrategy : unsigned char { Eager = 0, Lazy = 1 }; enumerator
53 bool isEager() const { return Strategy == UpdateStrategy::Eager; }; in isEager()
/external/tensorflow/tensorflow/contrib/eager/python/examples/workshop/
D3_inspecting.ipynb218 " model_output = translate_model.infer(encode(\"Eager execution\"))\n",
242 …"The Transformer model translates \"Eager execution\" in English to \"Hinrichtung\" in German, whi…
271 …xecution\". Then we'll patch part of that encoding into the encoding of \"Eager execution\" to fix…
374 …"Let's replace part of the encoding for \"Eager execution\" with the encoding of \"Immediate runni…
398 "model_output = translate_model.infer(encode(\"Eager execution\"))\n",
427 … \"execution\". Likely we're keeping just the encoding of \"tion\" from \"Eager execution\", so no…
D1_basic.ipynb49 "# Eager execution basics\n",
/external/tensorflow/tensorflow/go/
DBUILD20 "//tensorflow/c/eager:headers", # Eager C library header
/external/tensorflow/tensorflow/contrib/eager/python/examples/notebooks/
Deager_basics.ipynb44 "# Eager execution basics"
/external/tensorflow/tensorflow/core/protobuf/
Deager_service.proto152 // Eager Service defines a TensorFlow service that executes operations eagerly
153 // on a set of local devices, on behalf of a remote Eager executor.
/external/tensorflow/tensorflow/contrib/autograph/examples/notebooks/
Dag_vs_eager_collatz_speed_test.ipynb209 "# Eager"
266 "plot_results(counts, times, 'Eager')\n"
281 "name": "Autograph vs. Eager Collatz speed test",
Dag_vs_eager_mnist_speed_test.ipynb457 "# Eager"
619 "name": "Autograph vs. Eager MNIST speed test",
Dgraph_vs_ag_vs_eager_sum_speed_test.ipynb11 …"that computes the same function. The loop is implemented in TensorFlow Eager mode using Python sy…
391 "## Eager"
497 "_ = plt.title('Time to sum the elements of 1000 vectors (Eager)')\n",
506 "name": "Autograph vs. Eager vs Graph sum",
Ddev_summit_2018_demo.ipynb20 "1. _Write Eager code that is fast and scalable._\n",
81 "# 1. Write Eager code that is fast and scalable\n",
83 …"TF.Eager gives you more flexibility while coding, but at the cost of losing the benefits of Tenso…
85 …"AutoGraph gives you the best of both worlds: you can write your code in an Eager style, and we wi…
996 … train a model similar to the RNNColorbot model that was used in the main Eager notebook. The mode…
1185 …"The train and test functions are also similar to the ones used in the Eager notebook. Since the n…
Drnn_keras_estimator.ipynb161 …"Note how we write the model code in Eager style, with regular `if` and `while` statements. Then, …
224 " \"\"\"The RNN model code. Uses Eager.\n",
/external/tensorflow/tensorflow/lite/delegates/flex/
DBUILD2 # This is a TF Lite delegate that is powered by TensorFlow's Eager.
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DDomTreeUpdaterTest.cpp57 DomTreeUpdater DTU(DT, PDT, DomTreeUpdater::UpdateStrategy::Eager); in TEST()
167 DomTreeUpdater DTU(DT, PDT, DomTreeUpdater::UpdateStrategy::Eager); in TEST()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
DPGOMemOPSizeOpt.cpp352 DomTreeUpdater DTU(DT, DomTreeUpdater::UpdateStrategy::Eager); in perform()
/external/javapoet/
DCHANGELOG.md157 * New: Eager validation of argument types like `$T` and `$N`.
/external/google-fruit/tests/
Dtested_features.md155 * **TODO** Eager injection
/external/tensorflow/tensorflow/contrib/distribute/
DREADME.md347 * Eager support is in the works; performance can be more challenging with eager
/external/tensorflow/
DRELEASE.md86 … `num_parallel_calls` of `tf.data.Dataset.interleave` and `tf.data.Dataset.map` work in Eager mode.
421 * Eager Execution:
492 * Eager Execution:
539 * Eager mode is moving out of contrib, try `tf.enable_eager_execution()`.
706 * [Eager execution](https://github.com/tensorflow/tensorflow/tree/r1.5/tensorflow/contrib/eager)