[flang-commits] [PATCH] D99666: [flang] Implement reductions in the runtime

Peter Klausler via Phabricator via flang-commits flang-commits at lists.llvm.org
Wed Mar 31 09:25:13 PDT 2021


klausler created this revision.
klausler added reviewers: schweitz, jeanPerier.
klausler added a project: Flang.
Herald added subscribers: jdoerfert, pengfei, mgorny.
Herald added a reviewer: sscalpone.
klausler requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Add runtime APIs, implementations, and tests for ALL, ANY,
MAXLOC, MAXVAL, MINLOC, MINVAL, PRODUCT, and SUM reduction
transformantional intrinsic functions for all relevant argument
and result types and kinds, both without DIM= arguments
(total reductions) and with (partial reductions).

Complex-valued reductions have their APIs in C so that
C's _Complex types can be used for their results.

Some infrastructure work was also necessary or noticed:

- Usage of "long double" in the compiler was cleaned up a bit, and host dependences on x86 / MSVC have been isolated in a new Common/long-double header.
- Character comparison has been exposed via an extern template so that reductions could use it.
- Mappings from Fortran type category/kind to host C++ types and vice versa have been isolated into runtime/cpp-type.h and then used throughout the runtime as appropriate.
- The portable 128-bit integer package in Common/uint128.h was generalized to support signed comparisons.
- Bugs in descriptor indexing code were fixed.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D99666

Files:
  flang/include/flang/Common/long-double.h
  flang/include/flang/Common/uint128.h
  flang/include/flang/Decimal/decimal.h
  flang/lib/Decimal/binary-to-decimal.cpp
  flang/lib/Decimal/decimal-to-binary.cpp
  flang/runtime/CMakeLists.txt
  flang/runtime/character.cpp
  flang/runtime/character.h
  flang/runtime/complex-reduction.c
  flang/runtime/complex-reduction.h
  flang/runtime/cpp-type.h
  flang/runtime/descriptor-io.h
  flang/runtime/descriptor.cpp
  flang/runtime/descriptor.h
  flang/runtime/entry-names.h
  flang/runtime/io-api.cpp
  flang/runtime/reduction.cpp
  flang/runtime/reduction.h
  flang/runtime/tools.cpp
  flang/runtime/tools.h
  flang/runtime/transformational.cpp
  flang/runtime/transformational.h
  flang/runtime/type-code.cpp
  flang/unittests/Evaluate/reshape.cpp
  flang/unittests/RuntimeGTest/CMakeLists.txt
  flang/unittests/RuntimeGTest/Reduction.cpp

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D99666.334461.patch
Type: text/x-patch
Size: 129413 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20210331/09051f7e/attachment-0001.bin>


More information about the flang-commits mailing list