| /llvm-project-15.0.7/llvm/test/tools/llvm-libtool-darwin/ |
| H A D | create-static-lib.test | 3 # RUN: yaml2obj %S/Inputs/input1.yaml -o %t-input1.o 8 # RUN: llvm-libtool-darwin -static -o %t.lib %t-input1.o %t-input2.o %t-x86_64.bc 9 # RUN: llvm-libtool-darwin -static -o %t2.lib -o %t.lib %t-input1.o %t-input2.o %t-x86_64.bc 16 # CHECK-NAMES: [[PREFIX]]-input1.o 25 # CHECK-SYMBOLS-NEXT: _symbol1 in [[PREFIX]]-input1.o 36 # FORMAT-NEXT: [[PREFIX]]-input1.o 55 # RUN: llvm-libtool-darwin -static -o %t.lib %t-input1.o %t-input2.o %t-input1.o 2>&1 | \ 56 # RUN: FileCheck %s --check-prefix=DUPLICATE-INPUT -DFILE=%basename_t.tmp-input1.o \ 57 # RUN: -DINPUTA=%t-input1.o -DINPUTB=%t-input1.o 63 …llvm-libtool-darwin -warnings_as_errors -static -o %t.lib %t-input1.o %t-input2.o %t-input1.o 2>&1… [all …]
|
| H A D | deterministic-library.test | 7 # RUN: yaml2obj %S/Inputs/input1.yaml -o %t-input1.o 8 # RUN: touch -t 199505050555.55 %t-input1.o 11 # RUN: llvm-libtool-darwin -static -o %t.lib %t-input1.o 15 # RUN: llvm-libtool-darwin -static -o %t.lib -D %t-input1.o 21 # RUN: llvm-libtool-darwin -static -o %t.lib -U %t-input1.o 27 # RUN: llvm-libtool-darwin -static -o %t.lib %t-input1.o -D -D 2>&1 | count 0 31 # RUN: llvm-libtool-darwin -static -o %t.lib %t-input1.o -U -U 2>&1 | count 0 35 # RUN: not llvm-libtool-darwin -static -o %t.lib %t-input1.o -D -U 2>&1 | \
|
| H A D | archive-flattening.test | 3 # RUN: yaml2obj %S/Inputs/input1.yaml -o %t-input1.o 9 # RUN: llvm-ar cr %t.correct.ar %t-x86_64.bc %t-input1.o %t-input2.o 17 # CHECK-NAMES-NEXT: [[PREFIX]]-input1.o 26 # CHECK-SYMBOLS-NEXT: _symbol1 in [[PREFIX]]-input1.o 37 # FORMAT-NEXT: [[PREFIX]]-input1.o 42 # RUN: llvm-libtool-darwin -static -o %t.lib %t-x86_64.bc %t.correct.ar %t-input1.o 50 # BOTH-NAMES-NEXT: [[PREFIX]]-input1.o 52 # BOTH-NAMES-NEXT: [[PREFIX]]-input1.o 57 # BOTH-SYMBOLS-NEXT: _symbol1 in [[PREFIX]]-input1.o 59 # BOTH-SYMBOLS-NEXT: _symbol1 in [[PREFIX]]-input1.o [all …]
|
| H A D | L-and-l.test | 3 # RUN: yaml2obj %S/Inputs/input1.yaml -o %t-input1.o 13 # CHECK-NAMES: [[PREFIX]]-input1.o 17 # CHECK-SYMBOLS-NEXT: _symbol1 in [[PREFIX]]-input1.o 48 # OTHER-NAMES-NEXT: [[PREFIX]]-input1.o 52 # OTHER-SYMBOLS-NEXT: _symbol1 in [[PREFIX]]-input1.o 89 # RUN: cp %t-input1.o %t/copy 91 # RUN: %t/copy/%basename_t.tmp-input1.o -l%basename_t.tmp-input1.o -L%t/copy 2>&1 | \ 98 # RUN: -DFILE=%basename_t.tmp-input1.o 115 # RUN: llvm-ar cr %t/dirname/file %t-input1.o 119 # RUN: llvm-ar cr %t/dirname/libfile.a %t-input1.o [all …]
|
| H A D | filelist.test | 3 # RUN: yaml2obj %S/Inputs/input1.yaml -o %t-input1.o 8 # RUN: echo %t-input1.o > %t.files.txt 17 # CHECK-NAMES: [[PREFIX]]-input1.o 26 # CHECK-SYMBOLS-NEXT: _symbol1 in [[PREFIX]]-input1.o 32 # RUN: yaml2obj %S/Inputs/input1.yaml -o %t/dirname/%basename_t.tmp-input1.o 33 # RUN: echo %basename_t.tmp-input1.o > %t.files2.txt 42 # DIRNAME-NAMES: [[PREFIX]]-input1.o 45 # DIRNAME-SYMBOLS-NEXT: _symbol1 in [[PREFIX]]-input1.o 56 # REVERSE-NAMES-NEXT: [[PREFIX]]-input1.o 60 # REVERSE-SYMBOLS-NEXT: _symbol1 in [[PREFIX]]-input1.o
|
| H A D | version.test | 21 # RUN: yaml2obj %S/Inputs/input1.yaml -o %t-input1.o 23 # RUN: llvm-libtool-darwin -static -o %t.lib %t-input1.o %t-input2.o -V | FileCheck %s 24 # RUN: llvm-libtool-darwin -static -o %t2.lib %t-input1.o %t-input2.o
|
| H A D | universal-object-flattening.test | 4 # RUN: yaml2obj %S/Inputs/input1.yaml -o %t-input1.o 33 # RUN: llvm-libtool-darwin -static -o %t.lib %t-universal.o %t-input1.o -arch_only x86_64 40 # BOTH-NAMES-NEXT: [[PREFIX]]-input1.o 44 # BOTH-SYMBOLS-NEXT: _symbol1 in [[PREFIX]]-input1.o 48 # RUN: llvm-libtool-darwin -static -o %t.lib %t-universal.o %t-input1.o -arch_only arm64 56 # RUN: llvm-ar cr %t.ar %t-input1.o %t-input2.o 64 # ARCHIVE-NAMES: [[PREFIX]]-input1.o 68 # ARCHIVE-SYMBOLS-NEXT: _symbol1 in [[PREFIX]]-input1.o
|
| /llvm-project-15.0.7/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.first.of/ |
| H A D | ranges.find_first_of.pass.cpp | 73 std::array<int, N1> input1; member 82 …std::ranges::find_first_of(Iter1(d.input1.data()), Sent1(Iter1(d.input1.data() + d.input1.size())), in test() 84 assert(base(ret) == d.input1.data() + d.expected); in test() 87 …auto range1 = std::ranges::subrange(Iter1(d.input1.data()), Sent1(Iter1(d.input1.data() + d.input1… in test() 90 assert(base(ret) == d.input1.data() + d.expected); in test() 97 test<Iter1, Sent1, Iter2, Sent2, 4, 2>({.input1 = {1, 2, 3, 4}, .input2 = {2, 3}, .expected = 1}); in test_iterators() 99 test<Iter1, Sent1, Iter2, Sent2, 4, 2>({.input1 = {1, 2, 3, 4}, .input2 = {3, 2}, .expected = 1}); in test_iterators() 101 test<Iter1, Sent1, Iter2, Sent2, 4, 0>({.input1 = {1, 2, 3, 4}, .input2 = {}, .expected = 4}); in test_iterators() 103 test<Iter1, Sent1, Iter2, Sent2, 0, 1>({.input1 = {}, .input2 = {1}, .expected = 0}); in test_iterators() 105 test<Iter1, Sent1, Iter2, Sent2, 0, 0>({.input1 = {}, .input2 = {}, .expected = 0}); in test_iterators() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/algorithms/alg.sorting/alg.lex.comparison/ |
| H A D | ranges.lexicographical_compare.pass.cpp | 76 std::array<int, N> input1; member 85 …std::ranges::lexicographical_compare(Iter1(d.input1.data()), Sent1(Iter1(d.input1.data() + d.input… in test() 90 …auto range1 = std::ranges::subrange(Iter1(d.input1.data()), Sent1(Iter1(d.input1.data() + d.input1… in test() 101 …test<Iter1, Sent1, Iter2, Sent2, 4, 4>({.input1 = {1, 2}, .input2 = {1, 2, 3, 4}, .expected = true… in test_iterators() 103 …test<Iter1, Sent1, Iter2, Sent2, 4, 4>({.input1 = {1, 2, 3, 4}, .input2 = {1, 2, 3, 4}, .expected … in test_iterators() 105 test<Iter1, Sent1, Iter2, Sent2, 0, 4>({.input1 = {}, .input2 = {1, 2, 3, 4}, .expected = true}); in test_iterators() 107 test<Iter1, Sent1, Iter2, Sent2, 4, 0>({.input1 = {1, 2, 3, 4}, .input2 = {}, .expected = false}); in test_iterators() 109 test<Iter1, Sent1, Iter2, Sent2, 0, 0>({.input1 = {}, .input2 = {}, .expected = false}); in test_iterators() 111 …test<Iter1, Sent1, Iter2, Sent2, 3, 5>({.input1 = {1, 2, 3}, .input2 = {1, 2, 4, 5, 6}, .expected … in test_iterators() 113 …test<Iter1, Sent1, Iter2, Sent2, 3, 5>({.input1 = {1, 2, 4}, .input2 = {1, 2, 3, 4, 5}, .expected … in test_iterators() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/algorithms/alg.nonmodifying/alg.is_permutation/ |
| H A D | ranges.is_permutation.pass.cpp | 76 std::array<int, N> input1; member 84 std::same_as<bool> decltype(auto) ret = std::ranges::is_permutation(Iter1(d.input1.data()), in test() 85 … Sent1(Iter1(d.input1.data() + N)), in test() 91 auto range1 = std::ranges::subrange(Iter1(d.input1.data()), Sent1(Iter1(d.input1.data() + N))); in test() 101 …test<Iter1, Sent1, Iter2, Sent2, 4, 4>({.input1 = {1, 2, 3, 4}, .input2 = {1, 2, 3, 4}, .expected … in test_iterators() 104 …test<Iter1, Sent1, Iter2, Sent2, 4, 4>({.input1 = {1, 2, 3, 4}, .input2 = {4, 3, 2, 1}, .expected … in test_iterators() 116 test<Iter1, Sent1, Iter2, Sent2, 0, 4>({.input1 = {}, .input2 = {4, 3, 2, 1}, .expected = false}); in test_iterators() 119 …test<Iter1, Sent1, Iter2, Sent2, 5, 0>({.input1 = {4, 2, 3, 1, 5}, .input2 = {}, .expected = false… in test_iterators() 122 test<Iter1, Sent1, Iter2, Sent2, 0, 0>({.input1 = {}, .input2 = {}, .expected = true}); in test_iterators() 125 test<Iter1, Sent1, Iter2, Sent2, 1, 1>({.input1 = {1}, .input2 = {1}, .expected = true}); in test_iterators() [all …]
|
| /llvm-project-15.0.7/mlir/lib/Dialect/Tosa/Transforms/ |
| H A D | TosaMakeBroadcastable.cpp | 77 Value input1, Value input2, in reshapeLowerToHigher() argument 79 auto input1Ty = input1.getType().dyn_cast<RankedTensorType>(); in reshapeLowerToHigher() 94 higherTensorValue = input1; in reshapeLowerToHigher() 98 lowerTensorValue = input1; in reshapeLowerToHigher() 147 Value input1 = tosaBinaryOp.getInput1(); in matchAndRewrite() local 157 input1, input2, outInput1, outInput2) in matchAndRewrite() 177 Value input1 = tosaBinaryOp.getInput1(); in matchAndRewrite() local 187 input1, input2, outInput1, outInput2) in matchAndRewrite() 209 Value input1 = tosaBinaryOp.getInput1(); in matchAndRewrite() local 219 input1, input2, outInput1, outInput2) in matchAndRewrite()
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/Tosa/IR/ |
| H A D | TosaOps.td | 438 Tosa_Tensor:$input1, 585 I1Tensor:$input1, 657 I1Tensor:$input1, 681 I1Tensor:$input1, 870 Tosa_Tensor:$input1 892 Tosa_Tensor:$input1 914 Tosa_Tensor:$input1 936 Tosa_Tensor:$input1 958 Tosa_Tensor:$input1 980 Tosa_Tensor:$input1 [all …]
|
| /llvm-project-15.0.7/compiler-rt/test/builtins/timing/ |
| H A D | modsi3.c | 16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input1, INPUT_TYPE input2); 19 INPUT_TYPE input1[INPUT_SIZE]; in main() local 27 input1[i] = rand(); in main() 39 FUNCTION_NAME(input1[i], input2[i]); in main()
|
| H A D | udivdi3.c | 16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input1, INPUT_TYPE input2); 19 INPUT_TYPE input1[INPUT_SIZE]; in main() local 27 input1[i] = (((uint64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63); in main() 39 FUNCTION_NAME(input1[i], input2[i]); in main()
|
| H A D | divdi3.c | 16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input1, INPUT_TYPE input2); 19 INPUT_TYPE input1[INPUT_SIZE]; in main() local 27 input1[i] = (((int64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63); in main() 39 FUNCTION_NAME(input1[i], input2[i]); in main()
|
| H A D | umoddi3.c | 16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input1, INPUT_TYPE input2); 19 INPUT_TYPE input1[INPUT_SIZE]; in main() local 27 input1[i] = (((uint64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63); in main() 39 FUNCTION_NAME(input1[i], input2[i]); in main()
|
| H A D | muldi3.c | 16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input1, INPUT_TYPE input2); 19 INPUT_TYPE input1[INPUT_SIZE]; in main() local 27 input1[i] = (((int64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63); in main() 39 FUNCTION_NAME(input1[i], input2[i]); in main()
|
| H A D | moddi3.c | 16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input1, INPUT_TYPE input2); 19 INPUT_TYPE input1[INPUT_SIZE]; in main() local 27 input1[i] = (((int64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63); in main() 39 FUNCTION_NAME(input1[i], input2[i]); in main()
|
| /llvm-project-15.0.7/polly/lib/External/isl/ |
| H A D | schedule_cmp.c | 56 FILE *input1, *input2; in main() local 67 input1 = open_or_die(options->schedule1); in main() 69 s1 = isl_schedule_read_from_file(ctx, input1); in main() 80 fclose(input1); in main()
|
| H A D | flow_cmp.c | 65 FILE *input1, *input2; in main() local 75 input1 = open_or_die(options->flow1); in main() 77 s1 = isl_stream_new_file(ctx, input1); in main() 135 fclose(input1); in main()
|
| /llvm-project-15.0.7/mlir/test/mlir-tblgen/ |
| H A D | op-operand.td | 42 let arguments = (ins Variadic<AnyTensor>:$input1, AnyTensor:$input2, Variadic<AnyTensor>:$input3); 45 // CHECK-LABEL: ::mlir::ValueRange OpDAdaptor::input1 54 // CHECK-LABEL: ::mlir::Operation::operand_range OpD::input1 61 // CHECK-NEXT: odsState.addOperands(input1);
|
| /llvm-project-15.0.7/mlir/test/python/ir/ |
| H A D | dialects.py | 83 input1 = createInput() 85 op1 = ctx.dialects.arith.AddFOp(input1, input2) 89 AddFOp(input1, op1.result)
|
| /llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/CPU/ |
| H A D | sparse_quantized_matmul.mlir | 21 func.func @quantized_matmul(%input1: tensor<5x3xi8>, 27 ins(%input1, %input2, %c2, %c0 : tensor<5x3xi8>, tensor<3x6xi8, #DCSR>, i32, i32) 36 %input1 = arith.constant dense<[ 54 %0 = call @quantized_matmul(%input1, %sparse_input2, %output)
|
| /llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/ |
| H A D | subreg-postra-2.ll | 7 define void @jbd2_journal_commit_transaction(i32 %input1, i32* %input2, i32* %input3, i8** %input4)… 15 %ivar = add i32 %input1, 1 16 %tobool.i1316 = icmp eq i32 %input1, 0 23 %.err.4 = select i1 %lnot404, i32 -5, i32 %input1
|
| /llvm-project-15.0.7/mlir/test/python/dialects/ |
| H A D | pdl_ops.py | 74 input1 = OperandOp() 77 op1 = OperationOp(args=[input1], types=[ty]) 103 input1 = OperandOp() 106 op1 = OperationOp(args=[input1], types=[ty])
|