Home
last modified time | relevance | path

Searched refs:execute (Results 1 – 25 of 397) sorted by relevance

12345678910>>...16

/llvm-project-15.0.7/mlir/test/Dialect/Async/
H A Dops.mlir17 // CHECK: async.execute
18 %token = async.execute {
28 // CHECK: async.execute -> !async.value<f32>
41 // CHECK: async.execute -> !async.value<f32>
64 // CHECK: async.execute [%arg0]
65 %token = async.execute [%arg0] {
97 // CHECK: async.execute {
99 // CHECK: async.execute {
101 // CHECK: async.execute {
103 // CHECK: async.execute {
[all …]
H A Dasync-to-async-runtime.mlir6 %token = async.execute {
49 %token0 = async.execute {
52 %token1 = async.execute {
128 %token = async.execute {
134 %token_0 = async.execute [%token] {
192 %token = async.execute { async.yield }
197 async.execute {
337 %token = async.execute {
389 %token1 = async.execute {
416 // outline async execute function.
[all …]
/llvm-project-15.0.7/mlir/test/Dialect/GPU/
H A Dasync-region.mlir34 %a0 = async.execute {
45 %a1 = async.execute [%a0] {
63 // CHECK: %[[a:.*]] = async.execute
64 %a = async.execute {
82 %a0 = async.execute {
93 %a1 = async.execute [%a0] {
131 // CHECK: async.execute {
132 %a0 = async.execute {
146 %a0 = async.execute {
155 %a1 = async.execute [%a0] {
[all …]
/llvm-project-15.0.7/mlir/test/mlir-cpu-runner/
H A Dasync-value.mlir12 // Blocking async.await outside of the async.execute.
14 %token, %result = async.execute -> !async.value<f32> {
24 // Non-blocking async.await inside the async.execute
26 %token0, %result0 = async.execute -> !async.value<f32> {
27 %token1, %result2 = async.execute -> !async.value<f32> {
40 // Memref allocated inside async.execute region.
42 %token2, %result2 = async.execute[%token0] -> !async.value<memref<f32>> {
57 // Memref passed as async.execute operand.
59 %token3 = async.execute(%result2 as %unwrapped : !async.value<memref<f32>>) {
H A Dasync-error.mlir15 %token0 = async.execute {
27 %token1 = async.execute {
40 %token2 = async.execute {
41 %token = async.execute {
57 %token3, %value3 = async.execute -> !async.value<f32> {
58 %token, %value = async.execute -> !async.value<f32> {
83 %token4 = async.execute {
87 %token5 = async.execute {
H A Dasync-group.mlir22 %token0 = async.execute { async.yield }
23 %token1 = async.execute { async.yield }
24 %token2 = async.execute { async.yield }
25 %token3 = async.execute { async.yield }
26 %token4 = async.execute { async.yield }
34 %token5 = async.execute {
/llvm-project-15.0.7/mlir/test/Conversion/AsyncToLLVM/
H A Dconvert-to-llvm.mlir21 %token = async.execute {
36 // Function outlined from the async.execute operation.
76 %token0 = async.execute {
79 %token1 = async.execute {
134 %token = async.execute {
140 %token_0 = async.execute [%token] {
186 %token = async.execute { async.yield }
191 async.execute {
202 // Function outlined from the async.execute operation.
224 %token, %result = async.execute -> !async.value<f32> {
[all …]
/llvm-project-15.0.7/libcxx/test/libcxx/gdb/
H A Dgdb_pretty_printer_test.py91 s = gdb.execute("p value", to_string=True)
96 s = gdb.execute("p " + clean_expression_str, to_string=True)
117 gdb.execute("set height 0")
118 gdb.execute("set python print-stack full")
127 gdb.execute("run")
/llvm-project-15.0.7/mlir/lib/ExecutionEngine/
H A DAsyncRuntime.cpp405 auto execute = [handle, resume]() { (*resume)(handle); }; in mlirAsyncRuntimeAwaitTokenAndExecute() local
409 execute(); in mlirAsyncRuntimeAwaitTokenAndExecute()
411 token->awaiters.emplace_back([execute]() { execute(); }); in mlirAsyncRuntimeAwaitTokenAndExecute()
418 auto execute = [handle, resume]() { (*resume)(handle); }; in mlirAsyncRuntimeAwaitValueAndExecute() local
422 execute(); in mlirAsyncRuntimeAwaitValueAndExecute()
424 value->awaiters.emplace_back([execute]() { execute(); }); in mlirAsyncRuntimeAwaitValueAndExecute()
431 auto execute = [handle, resume]() { (*resume)(handle); }; in mlirAsyncRuntimeAwaitAllInGroupAndExecute() local
435 execute(); in mlirAsyncRuntimeAwaitAllInGroupAndExecute()
437 group->awaiters.emplace_back([execute]() { execute(); }); in mlirAsyncRuntimeAwaitAllInGroupAndExecute()
/llvm-project-15.0.7/mlir/lib/Dialect/Async/Transforms/
H A DAsyncToAsyncRuntime.cpp240 ModuleOp module = execute->getParentOfType<ModuleOp>(); in outlineExecuteOp()
243 Location loc = execute.getLoc(); in outlineExecuteOp()
247 cloneConstantsIntoTheRegion(execute.body()); in outlineExecuteOp()
252 functionInputs.insert(execute.operands().begin(), execute.operands().end()); in outlineExecuteOp()
259 auto outputTypes = execute.getResultTypes(); in outlineExecuteOp()
275 size_t numDependencies = execute.dependencies().size(); in outlineExecuteOp()
276 size_t numOperands = execute.operands().size(); in outlineExecuteOp()
297 for (Operation &op : execute.body().getOps()) in outlineExecuteOp()
328 ImplicitLocOpBuilder callBuilder(loc, execute); in outlineExecuteOp()
332 execute.erase(); in outlineExecuteOp()
[all …]
/llvm-project-15.0.7/clang/tools/scan-build-py/tests/functional/cases/
H A Dtest_exec_anatomy.py15 def execute(cmd): function
21 execute(['cmake', source_dir])
22 execute(['make'])
26 execute(['intercept-build', '--cdb', result_file, './exec',
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dexecute-only-section.ll1 ; RUN: llc < %s -mtriple=thumbv7m -mattr=+execute-only %s -o - | FileCheck %s
2 ; RUN: llc < %s -mtriple=thumbv8m.base -mattr=+execute-only %s -o - | FileCheck %s
3 ; RUN: llc < %s -mtriple=thumbv8m.base -mcpu=cortex-m23 -mattr=+execute-only %s -o - | FileCheck %s
4 ; RUN: llc < %s -mtriple=thumbv8m.main -mattr=+execute-only %s -o - | FileCheck %s
H A Dexecute-only-big-stack-frame.ll1 ; RUN: llc < %s -mtriple=thumbv7m -mattr=+execute-only -O0 %s -o - \
3 ; RUN: llc < %s -mtriple=thumbv8m.base -mattr=+execute-only -O0 %s -o - \
5 ; RUN: llc < %s -mtriple=thumbv8m.base -mcpu=cortex-m23 -mattr=+execute-only -O0 %s -o - \
7 ; RUN: llc < %s -mtriple=thumbv8m.main -mattr=+execute-only -O0 %s -o - \
H A Dexecute-only.ll1 ; RUN: llc -mtriple=thumbv8m.base-eabi -mattr=+execute-only %s -o - | FileCheck --check-prefix=CHEC…
2 ; RUN: llc -mtriple=thumbv8m.base-eabi -mcpu=cortex-m23 -mattr=+execute-only %s -o - | FileCheck --…
3 ; RUN: llc -mtriple=thumbv7m-eabi -mattr=+execute-only %s -o - | FileCheck --check-prefix=CHEC…
4 ; RUN: llc -mtriple=thumbv8m.main-eabi -mattr=+execute-only %s -o - | FileCheck --check-prefix=CHEC…
/llvm-project-15.0.7/llvm/test/MC/ARM/
H A Delf-execute-only-section.ll1 ; RUN: llc < %s -mtriple=thumbv8m.base-eabi -mattr=+execute-only -filetype=obj %s -o - | \
3 ; RUN: llc < %s -mtriple=thumbv8m.main-eabi -mattr=+execute-only -filetype=obj %s -o - | \
5 ; RUN: llc < %s -mtriple=thumbv7m-eabi -mattr=+execute-only -filetype=obj %s -o - | \
/llvm-project-15.0.7/clang/lib/Tooling/
H A DExecution.cpp43 ToolExecutor::execute(std::unique_ptr<FrontendActionFactory> Action) { in execute() function in clang::tooling::ToolExecutor
44 return execute(std::move(Action), ArgumentsAdjuster()); in execute()
47 llvm::Error ToolExecutor::execute(std::unique_ptr<FrontendActionFactory> Action, in execute() function in clang::tooling::ToolExecutor
53 return execute(Actions); in execute()
/llvm-project-15.0.7/lld/test/MachO/
H A Dadhoc-codesign.s13 …s, arm64-ios-simulator) x (default, -adhoc_codesign, -no_adhoc-codesign) x (execute, dylib, bundle)
15 # RUN: %lld -lSystem -arch x86_64 -execute -o %t/out %t/main-x86_64-macos.o
22 # RUN: %lld -lSystem -arch x86_64 -execute -adhoc_codesign -o %t/out %t/main-x86_64-macos.o
29 # RUN: %lld -lSystem -arch x86_64 -execute -no_adhoc_codesign -o %t/out %t/main-x86_64-macos.o
37 # RUN: %lld -lSystem -arch arm64 -execute -o %t/out %t/main-arm64-macos.o
44 # RUN: %lld -lSystem -arch arm64 -execute -adhoc_codesign -o %t/out %t/main-arm64-macos.o
51 # RUN: %lld -lSystem -arch arm64 -execute -no_adhoc_codesign -o %t/out %t/main-arm64-macos.o
59 # RUN: %no-arg-lld -arch arm64 -platform_version ios-simulator 14.0 15.0 -execute -o %t/out %t/main…
66 # RUN: %no-arg-lld -arch arm64 -platform_version ios-simulator 14.0 15.0 -execute -adhoc_codesign -…
73 # RUN: %no-arg-lld -lSystem -arch arm64 -platform_version ios-simulator 14.0 15.0 -execute -no_adho…
/llvm-project-15.0.7/mlir/test/Pass/
H A Dgeneric-pipeline.mlir3 // Test that we execute generic pipelines correctly. The `cse` pass is fully generic and should exe…
5 // should only execute on the func.
/llvm-project-15.0.7/clang/unittests/Tooling/
H A DExecutionTest.cpp101 execute(llvm::ArrayRef<std::pair<std::unique_ptr<FrontendActionFactory>, in execute() function in clang::tooling::TestToolExecutor
190 auto Err = Executor.execute(newFrontendActionFactory<SyntaxOnlyAction>(), in TEST()
201 auto Err = Executor.execute(std::unique_ptr<FrontendActionFactory>( in TEST()
214 auto Err = Executor.execute(std::unique_ptr<FrontendActionFactory>( in TEST()
259 auto Err = Executor.execute(std::unique_ptr<FrontendActionFactory>( in TEST()
287 auto Err = Executor.execute(std::unique_ptr<FrontendActionFactory>( in TEST()
/llvm-project-15.0.7/llvm/test/Other/
H A Dcan-execute.txt1 REQUIRES: can-execute
6 * Directories are executable, but we don't want to try to execute them.
12 execute.
/llvm-project-15.0.7/mlir/utils/vscode/src/
H A Dcommand.ts15 vscode.commands.registerCommand(command, this.execute, this);
24 abstract execute(...args: any[]): any;
/llvm-project-15.0.7/mlir/test/Integration/GPU/CUDA/
H A Dasync.mlir29 %t0, %f0 = async.execute () -> !async.value<memref<?xi32>> {
36 %t1, %f1 = async.execute [%t0] (
43 %t2, %f2 = async.execute [%t0] (
52 %t3 = async.execute [%t1, %t2] (
/llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/custom-result-category/
H A Dformat.py9 def execute(self, test, lit_config): member in MyFormat
10 result = super(MyFormat, self).execute(test, lit_config)
/llvm-project-15.0.7/clang/include/clang/Tooling/
H A DExecution.h120 execute(llvm::ArrayRef<
125 llvm::Error execute(std::unique_ptr<FrontendActionFactory> Action);
127 llvm::Error execute(std::unique_ptr<FrontendActionFactory> Action,
/llvm-project-15.0.7/openmp/runtime/tools/
H A Dcheck-depends.pl60 execute( [ $tool, $lib ], -stdout => \@bulk );
113 execute( [ $tool, "-d", $file ], -stdout => \@bulk );
178 execute( [ $tool, "-L", $file ], -stdout => \@bulk );
254 execute(

12345678910>>...16