[all-commits] [llvm/llvm-project] e372e0: [flang] Implement reductions in the runtime

Peter Klausler via All-commits all-commits at lists.llvm.org
Thu Apr 1 11:24:09 PDT 2021


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: e372e0f906194cb051ad71305e00f4634860bdf3
      https://github.com/llvm/llvm-project/commit/e372e0f906194cb051ad71305e00f4634860bdf3
  Author: peter klausler <pklausler at nvidia.com>
  Date:   2021-04-01 (Thu, 01 Apr 2021)

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

  Log Message:
  -----------
  [flang] Implement reductions in the runtime

Add runtime APIs, implementations, and tests for ALL, ANY, COUNT,
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.

Differential Revision: https://reviews.llvm.org/D99666




More information about the All-commits mailing list