[all-commits] [llvm/llvm-project] bfc8f9: [clang] Fix computation of number of dependencies ...
cilkplus via All-commits
all-commits at lists.llvm.org
Mon Oct 4 07:07:57 PDT 2021
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: bfc8f9e9b0bd2279ee3398ee62f255360a89f0e9
https://github.com/llvm/llvm-project/commit/bfc8f9e9b0bd2279ee3398ee62f255360a89f0e9
Author: Alexey Bataev <a.bataev at outlook.com>
Date: 2021-10-04 (Mon, 04 Oct 2021)
Changed paths:
M clang/lib/CodeGen/CGOpenMPRuntime.cpp
A clang/test/OpenMP/depend_iterator_bug.c
M clang/test/OpenMP/task_codegen.c
Log Message:
-----------
[clang] Fix computation of number of dependencies using OpenMP iterator,
by Raul Penacoba.
The size of kmp_depend_info and the number of dependencies are computed multiplying the iterator sizes, which not right.
Now size is computed as:
itersize1*numclausedeps1 + itersize2*numclausedeps2 + ... + itersizeN*numclausedepsN
where itersizeX is the size of the iterator and numclausedepsX the number of dependencies in that depend clause.
Reviewed By: ABataev
Differential Revision: https://reviews.llvm.org/D111045
More information about the All-commits
mailing list