Home
last modified time | relevance | path

Searched refs:execution (Results 1 – 25 of 1071) sorted by relevance

12345678910>>...43

/external/tensorflow/tensorflow/lite/nnapi/
DNeuralNetworksShim.h503 ANeuralNetworksExecution** execution) { in ANeuralNetworksExecution_create() argument
505 EXECUTE_FUNCTION_RETURN(compilation, execution); in ANeuralNetworksExecution_create()
522 inline void ANeuralNetworksExecution_free(ANeuralNetworksExecution* execution) { in ANeuralNetworksExecution_free() argument
524 EXECUTE_FUNCTION(execution); in ANeuralNetworksExecution_free()
553 ANeuralNetworksExecution* execution, int32_t index, in ANeuralNetworksExecution_setInput() argument
556 EXECUTE_FUNCTION_RETURN(execution, index, type, buffer, length); in ANeuralNetworksExecution_setInput()
587 ANeuralNetworksExecution* execution, int32_t index, in ANeuralNetworksExecution_setInputFromMemory() argument
591 EXECUTE_FUNCTION_RETURN(execution, index, type, memory, offset, length); in ANeuralNetworksExecution_setInputFromMemory()
620 ANeuralNetworksExecution* execution, int32_t index, in ANeuralNetworksExecution_setOutput() argument
623 EXECUTE_FUNCTION_RETURN(execution, index, type, buffer, length); in ANeuralNetworksExecution_setOutput()
[all …]
Dnnapi_implementation.h395 ANeuralNetworksExecution** execution);
412 void (*ANeuralNetworksExecution_free)(ANeuralNetworksExecution* execution);
441 ANeuralNetworksExecution* execution, int32_t index,
474 ANeuralNetworksExecution* execution, int32_t index,
505 ANeuralNetworksExecution* execution, int32_t index,
537 ANeuralNetworksExecution* execution, int32_t index,
568 ANeuralNetworksExecution* execution, ANeuralNetworksEvent** event);
814 int (*ANeuralNetworksExecution_compute)(ANeuralNetworksExecution* execution);
842 ANeuralNetworksExecution* execution, int32_t index, uint32_t* rank);
874 ANeuralNetworksExecution* execution, int32_t index, uint32_t* dimensions);
[all …]
DNeuralNetworksTypes.h405 ANeuralNetworksExecution** execution);
408 ANeuralNetworksExecution* execution);
411 ANeuralNetworksExecution* execution, int32_t index,
415 ANeuralNetworksExecution* execution, int32_t index,
420 ANeuralNetworksExecution* execution, int32_t index,
424 ANeuralNetworksExecution* execution, int32_t index,
429 ANeuralNetworksExecution* execution, ANeuralNetworksEvent** event);
468 ANeuralNetworksExecution* execution);
471 ANeuralNetworksExecution* execution, int32_t index, uint32_t* rank);
474 ANeuralNetworksExecution* execution, int32_t index, uint32_t* dimensions);
[all …]
/external/tensorflow/tensorflow/contrib/eager/python/examples/rnn_ptb/
DREADME.md5 that is compatible with (and idiomatic for) eager execution.
22 # Using eager execution
25 # Using graph execution
34 # Using eager execution
37 # Using graph execution
44 (3-6%) for graph execution over eager execution for this particular model when
/external/llvm/test/CodeGen/X86/
Davx512vl-logic.ll10 ; Force the execution domain with an add.
21 ; Force the execution domain with an add.
33 ; Force the execution domain with an add.
44 ; Force the execution domain with an add.
55 ; Force the execution domain with an add.
66 ; Force the execution domain with an add.
78 ; Force the execution domain with an add.
89 ; Force the execution domain with an add.
102 ; Force the execution domain with an add.
113 ; Force the execution domain with an add.
[all …]
/external/tensorflow/tensorflow/contrib/eager/python/examples/gan/
DREADME.md1 # GAN with TensorFlow eager execution
3 A simple Generative Adversarial Network (GAN) example using eager execution.
7 Other eager execution examples can be found under the parent directory.
13 execution.
15 graph execution. The same model definitions and loss functions are used in
22 or `tf-nightly-gpu` pip package in order to access the eager execution feature.
/external/tensorflow/tensorflow/contrib/eager/python/examples/resnet50/
DREADME.md8 eager execution enabled.
17 # Using eager execution
20 # Using graph execution
28 # Using eager execution
31 # Using graph execution
38 for eager and graph execution of this particular model when using
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/ocaml/executionengine/
Dllvm_executionengine.mli12 This interface provides an OCaml API for LLVM execution engine (JIT/
23 (** An execution engine is either a JIT compiler or an interpreter, capable of
43 level [optlevel]. Raises [Error msg] if an error occurrs. The execution
51 (** [dispose ee] releases the memory used by the execution engine and must be
55 (** [add_module m ee] adds the module [m] to the execution engine [ee]. *)
58 (** [remove_module m ee] removes the module [m] from the execution engine
63 the execution engine [ee]. *)
67 the execution engine [ee]. *)
70 (** [data_layout ee] is the data layout of the execution engine [ee]. *)
73 (** [add_global_mapping gv ptr ee] tells the execution engine [ee] that
/external/llvm/bindings/ocaml/executionengine/
Dllvm_executionengine.mli12 This interface provides an OCaml API for LLVM execution engine (JIT/
23 (** An execution engine is either a JIT compiler or an interpreter, capable of
43 level [optlevel]. Raises [Error msg] if an error occurrs. The execution
51 (** [dispose ee] releases the memory used by the execution engine and must be
55 (** [add_module m ee] adds the module [m] to the execution engine [ee]. *)
58 (** [remove_module m ee] removes the module [m] from the execution engine
63 the execution engine [ee]. *)
67 the execution engine [ee]. *)
70 (** [data_layout ee] is the data layout of the execution engine [ee]. *)
73 (** [add_global_mapping gv ptr ee] tells the execution engine [ee] that
/external/swiftshader/third_party/LLVM/bindings/ocaml/executionengine/
Dllvm_executionengine.mli12 This interface provides an ocaml API for LLVM execution engine (JIT/
19 and receive values from the execution engine. It supports only a limited
84 (** An execution engine is either a JIT compiler or an interpreter, capable of
89 (** [create m] creates a new execution engine, taking ownership of the
91 interpreter. Raises [Error msg] if an error occurrs. The execution engine
98 execution engine is not garbage collected and must be destroyed with
105 level [optlevel]. Raises [Error msg] if an error occurrs. The execution
110 (** [dispose ee] releases the memory used by the execution engine and must be
114 (** [add_module m ee] adds the module [m] to the execution engine [ee]. *)
117 (** [remove_module m ee] removes the module [m] from the execution engine
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/ScalarEvolution/
Dlshr-shl-differentconstmask.ll12 ; CHECK-NEXT: Determining loop execution counts for: @udiv_biggerLshr
26 ; CHECK-NEXT: Determining loop execution counts for: @udiv_biggerShl
42 ; CHECK-NEXT: Determining loop execution counts for: @shifty_biggerLshr
56 ; CHECK-NEXT: Determining loop execution counts for: @shifty_biggerLshr_lshrexact
70 ; CHECK-NEXT: Determining loop execution counts for: @shifty_biggerShr
84 ; CHECK-NEXT: Determining loop execution counts for: @shifty_biggerShr_lshrexact
100 ; CHECK-NEXT: Determining loop execution counts for: @masky_biggerLshr
112 ; CHECK-NEXT: Determining loop execution counts for: @masky_biggerLshr_lshrexact
125 ; CHECK-NEXT: Determining loop execution counts for: @masky_biggerShr
137 ; CHECK-NEXT: Determining loop execution counts for: @masky_biggerShr_lshrexact
Dshl-lshr-differentconstmask.ll12 ; CHECK-NEXT: Determining loop execution counts for: @mul_biggerShl
26 ; CHECK-NEXT: Determining loop execution counts for: @mul_biggerLshl
42 ; CHECK-NEXT: Determining loop execution counts for: @shifty_biggerShl
56 ; CHECK-NEXT: Determining loop execution counts for: @shifty_biggerShl_shlnuw
70 ; CHECK-NEXT: Determining loop execution counts for: @shifty_biggerLshr
84 ; CHECK-NEXT: Determining loop execution counts for: @shifty_biggerLshr_shlnuw
100 ; CHECK-NEXT: Determining loop execution counts for: @masky_biggerShl
112 ; CHECK-NEXT: Determining loop execution counts for: @masky_biggerShl_shlnuw
125 ; CHECK-NEXT: Determining loop execution counts for: @masky_biggerLshr
137 ; CHECK-NEXT: Determining loop execution counts for: @masky_biggerLshr_shlnuw
Dtrip-count9.ll11 ; CHECK: Determining loop execution counts for: @foo
27 ; CHECK: Determining loop execution counts for: @step2
43 ; CHECK: Determining loop execution counts for: @start1
59 ; CHECK: Determining loop execution counts for: @start1_step2
75 ; CHECK: Determining loop execution counts for: @startx
91 ; CHECK: Determining loop execution counts for: @startx_step2
107 ; CHECK: Determining loop execution counts for: @nsw
132 ; CHECK: Determining loop execution counts for: @nsw_step2
149 ; CHECK: Determining loop execution counts for: @nsw_start1
165 ; CHECK: Determining loop execution counts for: @nsw_start1_step2
[all …]
Dimplied-via-division.ll7 ; CHECK: Determining loop execution counts for: @test_1
27 ; CHECK: Determining loop execution counts for: @test_1neg
47 ; CHECK: Determining loop execution counts for: @test_2
67 ; CHECK: Determining loop execution counts for: @test_2neg
87 ; CHECK: Determining loop execution counts for: @test_3
107 ; CHECK: Determining loop execution counts for: @test_3neg
127 ; CHECK: Determining loop execution counts for: @test_4
147 ; CHECK: Determining loop execution counts for: @test_4neg
167 ; CHECK: Determining loop execution counts for: @test_ext_01
188 ; CHECK: Determining loop execution counts for: @test_ext_01neg
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/
Dattr-amdgpu-waves-per-eu.ll3 ; Exactly 1 wave per execution unit.
15 ; Exactly 5 waves per execution unit.
27 ; Exactly 10 waves per execution unit.
39 ; At least 1 wave per execution unit.
51 ; At least 5 waves per execution unit.
63 ; At least 10 waves per execution unit.
75 ; At most 1 wave per execution unit (same as @empty_exactly_1).
77 ; At most 5 waves per execution unit.
89 ; At most 10 waves per execution unit.
101 ; Between 1 and 5 waves per execution unit (same as @empty_at_most_5).
[all …]
/external/llvm/test/Analysis/ScalarEvolution/
Dtrip-count9.ll11 ; CHECK: Determining loop execution counts for: @foo
27 ; CHECK: Determining loop execution counts for: @step2
43 ; CHECK: Determining loop execution counts for: @start1
59 ; CHECK: Determining loop execution counts for: @start1_step2
75 ; CHECK: Determining loop execution counts for: @startx
91 ; CHECK: Determining loop execution counts for: @startx_step2
107 ; CHECK: Determining loop execution counts for: @nsw
132 ; CHECK: Determining loop execution counts for: @nsw_step2
149 ; CHECK: Determining loop execution counts for: @nsw_start1
165 ; CHECK: Determining loop execution counts for: @nsw_start1_step2
[all …]
/external/swiftshader/third_party/LLVM/test/Analysis/ScalarEvolution/
Dtrip-count9.ll11 ; CHECK: Determining loop execution counts for: @foo
27 ; CHECK: Determining loop execution counts for: @step2
43 ; CHECK: Determining loop execution counts for: @start1
59 ; CHECK: Determining loop execution counts for: @start1_step2
75 ; CHECK: Determining loop execution counts for: @startx
91 ; CHECK: Determining loop execution counts for: @startx_step2
107 ; CHECK: Determining loop execution counts for: @nsw
126 ; CHECK: Determining loop execution counts for: @nsw_step2
142 ; CHECK: Determining loop execution counts for: @nsw_start1
158 ; CHECK: Determining loop execution counts for: @nsw_start1_step2
[all …]
/external/mesa3d/src/gallium/docs/source/drivers/openswr/
Dknobs.rst25 Replace 3D primitive execute with a SWRClearRT operation and defer clear execution to first backend…
85 Disable per-draw/dispatch execution
89 Stop per-draw execution at worker FE NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled in core/…
93 Stop per-draw execution at vertex fetch NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled in co…
97 Stop per-draw execution at input assembler NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled in…
101 Stop per-draw execution at vertex shader NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled in c…
105 Stop per-draw execution at primitive setup NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled in…
109 Stop per-draw execution at primitive binning NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled …
113 Stop per-draw execution at rasterizer NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled in core…
/external/deqp/scripts/log/
DREADME.md12 1. A list of single tests sorted descending by the duration of execution. On this list one can
15 2. A list of groups of tests sorted descending by their total duration of execution. This list
39 The biggest tests time of execution
48 Total time of execution: 758611214
51 The biggest total time of execution
59 The biggest time of execution per test
/external/jacoco/jacoco-maven-plugin.test/it/it-merge-passes/
Dverify.bsh16 if ( buildLog.indexOf( "Loading execution data file" ) < 0 ) {
17 throw new RuntimeException( "Could not load execution data file" );
19 if ( buildLog.indexOf( "Writing merged execution data to" ) < 0 ) {
20 throw new RuntimeException( "Could not write merged execution data" );
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/NVPTX/
Dspeculative-execution-divergent-target.ll1 ; Checks that speculative-execution only runs on divergent targets, if you pass
4 ; RUN: opt < %s -S -mtriple=nvptx-nvidia-cuda -speculative-execution | \
6 ; RUN: opt < %s -S -mtriple=nvptx-nvidia-cuda -speculative-execution \
9 ; RUN: opt < %s -S -speculative-execution -spec-exec-only-if-divergent-target | \
/external/llvm/test/CodeGen/NVPTX/
Dspeculative-execution-divergent-target.ll1 ; Checks that speculative-execution only runs on divergent targets, if you pass
4 ; RUN: opt < %s -S -mtriple=nvptx-nvidia-cuda -speculative-execution | \
6 ; RUN: opt < %s -S -mtriple=nvptx-nvidia-cuda -speculative-execution \
9 ; RUN: opt < %s -S -speculative-execution -spec-exec-only-if-divergent-target | \
/external/tensorflow/tensorflow/contrib/eager/
DREADME.md3 Eager execution provides an imperative interface to TensorFlow (similar to
4 [NumPy](http://www.numpy.org)). When you enable eager execution, TensorFlow
20 Eager execution makes this much simpler:
40 For eager execution, we recommend using TensorFlow version 1.8 or newer.
45 For an introduction to eager execution in TensorFlow, see:
/external/tensorflow/tensorflow/core/debug/
Ddebug_service.proto52 // execution of an eager operation.
62 // A key for the call. For example, for graph execution, this is a key
67 // For graph execution, this is the stack of the Session.run() call.
68 // For eager execution, this is the stack of the Python line that invokes
69 // the execution of the eager op.
92 // execution.
95 // Send the tracebacks of a TensorFlow execution call.
/external/syzkaller/docs/
Dexecuting_syzkaller_programs.md5 execution log with several programs.
43 repeat execution that many times (0 for infinite loop) (default 1)
50 …es execution of each syscall in a separate thread, so that execution can proceed over blocking sys…

12345678910>>...43