Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[flang][OpenMP] Generate implicit mapping for reduction variable. #15

Merged
merged 2 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 38 additions & 1 deletion flang/lib/Lower/OpenMP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,9 @@ class ClauseProcessor {
llvm::SmallVectorImpl<mlir::Location> *mapSymLocs = nullptr,
llvm::SmallVectorImpl<const Fortran::semantics::Symbol *>
*mapSymbols = nullptr) const;
bool processTargetReduction(
llvm::SmallVector<const Fortran::semantics::Symbol *> &reductionSymbols)
const;
bool processReduction(
mlir::Location currentLocation,
llvm::SmallVectorImpl<mlir::Value> &reductionVars,
Expand Down Expand Up @@ -1095,6 +1098,21 @@ class ReductionProcessor {
return decl;
}

static void addReductionSym(
const Fortran::parser::OmpReductionClause &reduction,
llvm::SmallVector<const Fortran::semantics::Symbol *> &Symbols) {
const auto &objectList{
std::get<Fortran::parser::OmpObjectList>(reduction.t)};

for (const Fortran::parser::OmpObject &ompObject : objectList.v) {
if (const auto *name{
Fortran::parser::Unwrap<Fortran::parser::Name>(ompObject)}) {
if (const Fortran::semantics::Symbol * symbol{name->symbol})
Symbols.push_back(symbol);
}
}
}

/// Creates a reduction declaration and associates it with an OpenMP block
/// directive.
static void addReductionDecl(
Expand Down Expand Up @@ -2011,6 +2029,17 @@ bool ClauseProcessor::processMap(
});
}

bool ClauseProcessor::processTargetReduction(
llvm::SmallVector<const Fortran::semantics::Symbol *> &reductionSymbols)
const {
return findRepeatableClause<ClauseTy::Reduction>(
[&](const ClauseTy::Reduction *reductionClause,
const Fortran::parser::CharBlock &) {
ReductionProcessor rp;
rp.addReductionSym(reductionClause->v, reductionSymbols);
});
}

bool ClauseProcessor::processReduction(
mlir::Location currentLocation,
llvm::SmallVectorImpl<mlir::Value> &reductionVars,
Expand Down Expand Up @@ -3153,6 +3182,7 @@ genTargetOp(Fortran::lower::AbstractConverter &converter,
llvm::SmallVector<mlir::Type> mapSymTypes;
llvm::SmallVector<mlir::Location> mapSymLocs;
llvm::SmallVector<const Fortran::semantics::Symbol *> mapSymbols;
llvm::SmallVector<const Fortran::semantics::Symbol *> reductionSymbols;

ClauseProcessor cp(converter, clauseList);
cp.processDevice(stmtCtx, deviceOperand);
Expand All @@ -3178,6 +3208,9 @@ genTargetOp(Fortran::lower::AbstractConverter &converter,
.getIsTargetDevice())
cp.processNowait(nowaitAttr);

if (outerCombined)
cp.processTargetReduction(reductionSymbols);

// 5.8.1 Implicit Data-Mapping Attribute Rules
// The following code follows the implicit data-mapping rules to map all the
// symbols used inside the region that have not been explicitly mapped using
Expand Down Expand Up @@ -3222,7 +3255,11 @@ genTargetOp(Fortran::lower::AbstractConverter &converter,
if (auto refType = baseOp.getType().dyn_cast<fir::ReferenceType>())
eleType = refType.getElementType();

if (fir::isa_trivial(eleType) || fir::isa_char(eleType)) {
// Do a tofrom map for reduction variables.
if (llvm::find(reductionSymbols, &sym) != reductionSymbols.end()) {
mapFlag |= llvm::omp::OpenMPOffloadMappingFlags::OMP_MAP_FROM;
mapFlag |= llvm::omp::OpenMPOffloadMappingFlags::OMP_MAP_TO;
} else if (fir::isa_trivial(eleType) || fir::isa_char(eleType)) {
captureKind = mlir::omp::VariableCaptureKind::ByCopy;
} else if (!fir::isa_builtin_cptr_type(eleType)) {
mapFlag |= llvm::omp::OpenMPOffloadMappingFlags::OMP_MAP_TO;
Expand Down
43 changes: 43 additions & 0 deletions flang/test/Lower/OpenMP/reduction_var_map.f90
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
!RUN: %flang_fc1 -emit-hlfir -fopenmp %s -o - | FileCheck %s

! This test checks that if reduction clause is on a combined target
! construct, there is an implicit map(tofrom) for each reduction variable.

! construct with target
subroutine omp_target_combined
implicit none
integer(kind = 8) :: s1
integer(kind = 8) :: s2
integer(kind = 4) :: i
s1 = 1
s2 = 1
!$omp target teams distribute parallel do reduction(+:s1) reduction(+:s2)
do i=1,1000
s1 = s1 + i
s2 = s2 + i
end do
!$omp end target teams distribute parallel do
return
end subroutine omp_target_combined
!CHECK-LABEL: func.func @_QPomp_target_combined() {
!CHECK: omp.map_info var_ptr({{.*}} : !fir.ref<i64>, i64) map_clauses(implicit, tofrom) capture(ByRef) -> !fir.ref<i64> {name = "s1"}
!CHECK: omp.map_info var_ptr({{.*}} : !fir.ref<i64>, i64) map_clauses(implicit, tofrom) capture(ByRef) -> !fir.ref<i64> {name = "s2"}
!CHECK: omp.map_info var_ptr({{.*}} : !fir.ref<i32>, i32) map_clauses(implicit, exit_release_or_enter_alloc) capture(ByCopy) -> !fir.ref<i32> {name = "i"}

subroutine omp_target_team_separate
implicit none
integer(kind = 8) :: s3
integer i
s3 = 1
!$omp target
s3 = 2
!$omp teams distribute parallel do reduction(+:s3)
do i=1,1000
s3 = s3 + i
end do
!$omp end teams distribute parallel do
!$omp end target
return
end subroutine omp_target_team_separate
!CHECK-LABEL: func.func @_QPomp_target_team_separate() {
!CHECK: omp.map_info var_ptr({{.*}} : !fir.ref<i64>, i64) map_clauses(implicit, exit_release_or_enter_alloc) capture(ByCopy) -> !fir.ref<i64> {name = "s3"}