packages feed

futhark-0.25.37: src/Futhark/Pass/ExplicitAllocations/SegOp.hs

{-# LANGUAGE TypeFamilies #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}

module Futhark.Pass.ExplicitAllocations.SegOp
  ( allocInKernelBody,
    allocInBinOpLambda,
    allocInPostOpLambda,
  )
where

import Control.Monad
import Futhark.IR.GPUMem
import Futhark.IR.Mem.LMAD qualified as LMAD
import Futhark.Pass.ExplicitAllocations

instance SizeSubst (SegOp lvl rep)

allocInKernelBody ::
  (Allocable fromrep torep inner) =>
  KernelBody fromrep ->
  AllocM fromrep torep (KernelBody torep)
allocInKernelBody (Body () stms res) =
  uncurry (flip (Body ())) <$> collectStms (allocInStms stms (pure res))

allocInBinOpParams ::
  (Allocable fromrep torep inner) =>
  SubExp ->
  TPrimExp Int64 VName ->
  TPrimExp Int64 VName ->
  [LParam fromrep] ->
  [LParam fromrep] ->
  AllocM fromrep torep ([LParam torep], [LParam torep])
allocInBinOpParams num_threads my_id other_id xs ys = unzip <$> zipWithM alloc xs ys
  where
    alloc x y =
      case paramType x of
        Array pt shape u -> do
          let name = maybe "num_threads" baseName (subExpVar num_threads)
          twice_num_threads <-
            letSubExp ("twice_" <> name) . BasicOp $
              BinOp (Mul Int64 OverflowUndef) num_threads (intConst Int64 2)
          let t = paramType x `arrayOfRow` twice_num_threads
          mem <- allocForArray t =<< askDefaultSpace
          -- XXX: this iota lmad is a bit inefficient; leading to
          -- uncoalesced access.
          let base_dims = map pe64 $ arrayDims t
              lmad_base = LMAD.iota 0 base_dims
              lmad_x =
                LMAD.slice lmad_base $
                  fullSliceNum base_dims [DimFix my_id]
              lmad_y =
                LMAD.slice lmad_base $
                  fullSliceNum base_dims [DimFix other_id]
          pure
            ( x {paramDec = MemArray pt shape u $ ArrayIn mem lmad_x},
              y {paramDec = MemArray pt shape u $ ArrayIn mem lmad_y}
            )
        Prim bt ->
          pure
            ( x {paramDec = MemPrim bt},
              y {paramDec = MemPrim bt}
            )
        Mem space ->
          pure
            ( x {paramDec = MemMem space},
              y {paramDec = MemMem space}
            )
        -- This next case will never happen.
        Acc acc ispace ts u ->
          pure
            ( x {paramDec = MemAcc acc ispace ts u},
              y {paramDec = MemAcc acc ispace ts u}
            )

allocInBinOpLambda ::
  (Allocable fromrep torep inner) =>
  SubExp ->
  SegSpace ->
  Lambda fromrep ->
  AllocM fromrep torep (Lambda torep)
allocInBinOpLambda num_threads (SegSpace flat _) lam = do
  let (acc_params, arr_params) =
        splitAt (length (lambdaParams lam) `div` 2) $ lambdaParams lam
      index_x = TPrimExp $ LeafExp flat int64
      index_y = index_x + pe64 num_threads
  (acc_params', arr_params') <-
    allocInBinOpParams num_threads index_x index_y acc_params arr_params

  allocInLambda (acc_params' ++ arr_params') (lambdaBody lam)

allocInPostOpLambda ::
  (Allocable fromrep torep inner) =>
  SubExp ->
  SegSpace ->
  Lambda fromrep ->
  AllocM fromrep torep (Lambda torep)
allocInPostOpLambda num_threads (SegSpace flat _) lam = do
  let arr_params = lambdaParams lam
      index_x = TPrimExp $ LeafExp flat int64
  arr_params' <- allocInLParams num_threads index_x arr_params

  allocInLambda arr_params' (lambdaBody lam)