Skip to content
/ loopy Public
forked from inducer/loopy

A code generator for array-based code on CPUs and GPUs

License

Notifications You must be signed in to change notification settings

sv2518/loopy

This branch is 469 commits behind inducer/loopy:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

094cb16 · Mar 2, 2022
Feb 4, 2022
May 31, 2021
Mar 29, 2016
Sep 29, 2020
Mar 1, 2022
Feb 13, 2022
Mar 2, 2022
Sep 29, 2020
Mar 2, 2022
Jun 23, 2020
Apr 23, 2021
Jan 24, 2022
May 3, 2015
Mar 8, 2019
May 21, 2021
Sep 23, 2018
Oct 29, 2020
Apr 20, 2015
Apr 25, 2021
Apr 9, 2015
Apr 25, 2021
Sep 28, 2020
Mar 2, 2022
Jun 14, 2021
Jun 17, 2021

Repository files navigation

Loopy: Transformation-Based Generation of High-Performance CPU/GPU Code

Gitlab Build Status Github Build Status Python Package Index Release Page

Loopy lets you easily generate the tedious, complicated code that is necessary to get good performance out of GPUs and multi-core CPUs. Loopy's core idea is that a computation should be described simply and then transformed into a version that gets high performance. This transformation takes place under user control, from within Python.

It can capture the following types of optimizations:

  • Vector and multi-core parallelism in the OpenCL/CUDA model
  • Data layout transformations (structure of arrays to array of structures)
  • Loop unrolling
  • Loop tiling with efficient handling of boundary cases
  • Prefetching/copy optimizations
  • Instruction level parallelism
  • and many more

Loopy targets array-type computations, such as the following:

  • dense linear algebra,
  • convolutions,
  • n-body interactions,
  • PDE solvers, such as finite element, finite difference, and Fast-Multipole-type computations

It is not (and does not want to be) a general-purpose programming language.

Loopy is licensed under the liberal MIT license and free for commercial, academic, and private use. All of Loopy's dependencies can be automatically installed from the package index after using:

pip install loopy

In addition, Loopy is compatible with and enhances pyopencl.

---

Places on the web related to Loopy:

About

A code generator for array-based code on CPUs and GPUs

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.7%
  • Other 0.3%