Home
last modified time | relevance | path

Searched refs:steps (Results 1 – 25 of 189) sorted by relevance

12345678

/llvm-project-15.0.7/libcxx/utils/libcxx/test/
H A Dformat.py203 steps = [ ] # The steps are already in the script
206 steps = [
211 steps = [
216 steps = [
221 steps = [
230 steps = [
239 steps = [
249 steps = [
253 steps = [
265 def _executeShTest(self, test, litConfig, steps): argument
[all …]
/llvm-project-15.0.7/openmp/runtime/test/ompt/misc/
H A Dapi_calls_misc.c24 int steps = 0; in main() local
25 while (ompt_enumerate_states(state, &state, &state_name) && steps < 1000) { in main()
26 steps++; in main()
31 if (steps >= 1000) { in main()
40 steps = 0; in main()
42 steps < 1000) { in main()
43 steps++; in main()
48 if (steps >= 1000) { in main()
/llvm-project-15.0.7/.github/workflows/
H A Dlibclang-abi-tests.yml32 BASELINE_REF: ${{ steps.vars.outputs.BASELINE_REF }}
33 ABI_HEADERS: ${{ steps.vars.outputs.ABI_HEADERS }}
34 ABI_LIBS: ${{ steps.vars.outputs.ABI_LIBS }}
35 BASELINE_VERSION_MAJOR: ${{ steps.vars.outputs.BASELINE_VERSION_MAJOR }}
37 LLVM_VERSION_MAJOR: ${{ steps.version.outputs.LLVM_VERSION_MAJOR }}
38 LLVM_VERSION_MINOR: ${{ steps.version.outputs.LLVM_VERSION_MINOR }}
39 LLVM_VERSION_PATCH: ${{ steps.version.outputs.LLVM_VERSION_PATCH }}
40 steps:
55 …if [ ${{ steps.version.outputs.LLVM_VERSION_MINOR }} -ne 0 -o ${{ steps.version.outputs.LLVM_VERSI…
100 steps:
[all …]
H A Drelease-tasks.yml13 steps:
40 …ease/./github-upload-release.py --token ${{ github.token }} --release ${{ steps.validate-tag.outpu…
45 …elease/github-upload-release.py --token ${{ github.token }} --release ${{ steps.validate-tag.outpu…
48 if: ${{ !contains(steps.validate-tag.outputs.release-version, 'rc') }}
57 if: ${{ !contains(steps.validate-tag.outputs.release-version, 'rc') }}
59 mkdir -p ../www-releases/${{ steps.validate-tag.outputs.release-version }}
60 … mv ./docs-build/html-export/* ../www-releases/${{ steps.validate-tag.outputs.release-version }}
62 git add ${{ steps.validate-tag.outputs.release-version }}
65 git commit -a -m "Add ${{ steps.validate-tag.outputs.release-version }} documentation"
H A Dllvm-tests.yml60 BASELINE_REF: ${{ steps.vars.outputs.BASELINE_REF }}
61 ABI_HEADERS: ${{ steps.vars.outputs.ABI_HEADERS }}
62 BASELINE_VERSION_MAJOR: ${{ steps.vars.outputs.BASELINE_VERSION_MAJOR }}
63 LLVM_VERSION_MAJOR: ${{ steps.version.outputs.LLVM_VERSION_MAJOR }}
64 LLVM_VERSION_MINOR: ${{ steps.version.outputs.LLVM_VERSION_MINOR }}
65 LLVM_VERSION_PATCH: ${{ steps.version.outputs.LLVM_VERSION_PATCH }}
66 steps:
79 …if [ ${{ steps.version.outputs.LLVM_VERSION_MINOR }} -ne 0 -o ${{ steps.version.outputs.LLVM_VERSI…
83 … echo ::set-output name=BASELINE_VERSION_MAJOR::${{ steps.version.outputs.LLVM_VERSION_MAJOR }}
105 steps:
[all …]
H A Dissue-release-workflow.yml37 steps:
72 steps:
H A Dclosed-issues.yml10 steps:
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/dextIR/
H A DDextIR.py55 self.steps: List[StepIR] = []
61 for step in self.steps:
74 return len(self.steps)
82 return next((s for s in reversed(self.steps)
90 if len(self.steps) == 0:
93 prev_step = self.steps[-1]
129 self.steps.append(step)
133 self.steps.clear()
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/heuristic/
H A DHeuristic.py128 def __init__(self, context, steps): argument
144 command.eval(steps)
151 command.eval(steps)
166 command.eval(steps)
181 success = expect_state.eval(steps)
204 for step in getattr(steps, 'steps'):
226 if 'DexUnreachable' in steps.commands:
227 cmds = steps.commands['DexUnreachable']
232 s for s in steps.steps if 'DexUnreachable' in s.watches.keys()
252 if 'DexExpectStepOrder' in steps.commands:
[all …]
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/tools/test/
H A DTool.py163 steps = debugger_controller.step_collection
164 steps.builder = builderIR
165 return steps
195 def _record_steps(self, test_name, steps): argument
202 self.context.o.auto(str(steps), stream=Stream(fp))
231 def _record_successful_test(self, test_name, steps, heuristic): argument
238 self.context.o.auto('\n{}\n'.format(steps))
247 steps = self._get_steps(builderIR)
248 self._record_steps(test_name, steps)
249 heuristic_score = Heuristic(self.context, steps)
[all …]
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dconstexpr-steps.cpp11 constexpr bool steps(int n) { in steps() function
16 static_assert(steps((MAX - 4)), ""); // ok
17 static_assert(steps((MAX - 3)), ""); // expected-error {{constant}} expected-note{{call}}
H A Dconstexpr-turing-cxx2a.cpp39 unsigned steps = 0; in run() local
41 for (state = 0; state != halt; ++steps) { in run()
49 return steps; in run()
/llvm-project-15.0.7/mlir/lib/Dialect/GPU/Transforms/
H A DMemoryPromotion.cpp36 SmallVector<Value, 4> lbs, ubs, steps; in insertCopyLoops() local
46 steps.resize(extraLoops, one); in insertCopyLoops()
52 steps.reserve(lbs.size()); in insertCopyLoops()
56 steps.push_back(one); in insertCopyLoops()
70 b, b.getLoc(), lbs, ubs, steps, in insertCopyLoops()
/llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxMap.cpp104 size_t steps = 0; in advance() local
107 count--, steps++; in advance()
108 if (m_error || m_entry.null() || (steps > m_max_depth)) in advance()
123 size_t steps = 0; in next() local
130 steps++; in next()
131 if (steps > m_max_depth) { in next()
144 size_t steps = 0; in tree_min() local
152 steps++; in tree_min()
153 if (steps > m_max_depth) in tree_min()
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/tools/view/
H A DTool.py49 steps = pickle.load(fp)
52 heuristic = Heuristic(self.context, steps)
57 heuristic.summary_string, steps, heuristic.verbose_output))
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/tools/clang_opt_bisect/
H A DTool.py145 steps = debugger_controller.step_collection
147 steps = DextIR(
152 steps.builder = builderIR
155 heuristic = Heuristic(self.context, steps)
191 steps_str = str(steps)
218 self.context.o.auto(str(steps) + '\n', stream=Stream(fp))
225 pickle.dump(steps, fp, protocol=pickle.HIGHEST_PROTOCOL)
/llvm-project-15.0.7/mlir/lib/Dialect/Linalg/Utils/
H A DUtils.cpp138 steps.emplace_back(range.stride); in unpackRanges()
526 SmallVector<Value, 4> lbs, ubs, steps; in doit() local
527 unpackRanges(loopRanges, lbs, ubs, steps); in doit()
569 SmallVector<Value, 4> lbs, ubs, steps; in doit() local
570 unpackRanges(loopRanges, lbs, ubs, steps); in doit()
574 constantSteps.reserve(steps.size()); in doit()
575 for (Value v : steps) { in doit()
617 assert(lbs.size() == steps.size());
652 steps.take_front(nOuterPar),
681 steps.take_front(numProcessed),
[all …]
/llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVAtomicOps.td54 Perform the following steps atomically with respect to any other atomic
99 Perform the following steps atomically with respect to any other atomic
215 Perform the following steps atomically with respect to any other atomic
273 Perform the following steps atomically with respect to any other atomic
328 Perform the following steps atomically with respect to any other atomic
369 Perform the following steps atomically with respect to any other atomic
409 Perform the following steps atomically with respect to any other atomic
448 Perform the following steps atomically with respect to any other atomic
490 Perform the following steps atomically with respect to any other atomic
531 Perform the following steps atomically with respect to any other atomic
[all …]
/llvm-project-15.0.7/mlir/include/mlir/Dialect/SCF/IR/
H A DSCF.h90 ValueRange steps, ValueRange iterArgs,
99 ValueRange ubs, ValueRange steps,
/llvm-project-15.0.7/libcxx/utils/ci/
H A Dbuildkite-pipeline-snapshot.sh19 steps:
H A Dbuildkite-pipeline-premerge.sh34 steps:
/llvm-project-15.0.7/mlir/lib/Conversion/SCFToGPU/
H A DSCFToGPU.cpp166 SmallVector<Value, 6> steps; member
188 steps.reserve(numLoops); in collectBounds()
206 steps.push_back(step); in collectBounds()
261 auto *stepArgumentIt = steps.begin(); in createLaunch()
267 Value step = steps[en.index()]; in createLaunch()
/llvm-project-15.0.7/mlir/lib/Conversion/AffineToStandard/
H A DAffineToStandard.cpp175 SmallVector<Value, 8> steps; in matchAndRewrite() local
196 steps.reserve(op.getSteps().size()); in matchAndRewrite()
198 steps.push_back(rewriter.create<arith::ConstantIndexOp>(loc, step)); in matchAndRewrite()
206 upperBoundTuple, steps, in matchAndRewrite()
232 loc, lowerBoundTuple, upperBoundTuple, steps, identityVals, in matchAndRewrite()
/llvm-project-15.0.7/flang/
H A D.drone.star5 "steps": [
31 "steps": [
/llvm-project-15.0.7/
H A DSECURITY.md3 To report security issues in LLVM, please follow the steps outlined on the

12345678