futhark-0.23.1: An optimising compiler for a functional, array-oriented language.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Futhark.Optimise.EntryPointMem

Description

We require that entry points return arrays with zero offset in row-major order. Futhark.Pass.ExplicitAllocations is conservative and inserts copies to ensure this is the case. After simplification, it may turn out that those copies are redundant. This pass removes them. It's a prettyString simple pass, as it only has to look at the top level of entry points.

Synopsis

Documentation

entryPointMemGPU :: Pass GPUMem GPUMem Source #

The pass for GPU representation.

entryPointMemMC :: Pass MCMem MCMem Source #

The pass for MC representation.

entryPointMemSeq :: Pass SeqMem SeqMem Source #

The pass for Seq representation.