halide-haskell-0.0.1.0: src/Language/Halide/Kernel.hs
{-# LANGUAGE AllowAmbiguousTypes #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE UndecidableInstances #-}
-- |
-- Module : Language.Halide.Kernel
-- Description : Compiling functions to kernels
-- Copyright : (c) Tom Westerhout, 2023
module Language.Halide.Kernel
( compile
, compileForTarget
, compileToCallable
, compileToLoweredStmt
, StmtOutputFormat (..)
, IsFuncBuilder
, ReturnsFunc
, Lowered
)
where
import Control.Exception (bracket)
import Control.Monad.Primitive (touch)
import Control.Monad.ST (RealWorld)
import Data.IORef
import Data.Kind (Type)
import Data.Primitive.PrimArray (MutablePrimArray)
import Data.Primitive.PrimArray qualified as P
import Data.Primitive.Ptr qualified as P
import Data.Proxy
import Data.Text (Text, pack)
import Data.Text.Encoding (encodeUtf8)
import Data.Text.IO qualified as T
import Foreign.C.Types (CUIntPtr (..))
import Foreign.ForeignPtr
import Foreign.ForeignPtr.Unsafe
import Foreign.Ptr (FunPtr, Ptr, castPtr)
import Foreign.Storable
import GHC.TypeNats
import Language.C.Inline qualified as C
import Language.C.Inline.Cpp.Exception qualified as C
import Language.C.Inline.Unsafe qualified as CU
import Language.Halide.Buffer
import Language.Halide.Context
import Language.Halide.Expr
import Language.Halide.Func
import Language.Halide.RedundantConstraints
import Language.Halide.Target
import Language.Halide.Type
import System.IO.Temp (withSystemTempDirectory)
import Unsafe.Coerce (unsafeCoerce)
importHalide
data ArgvStorage s
= ArgvStorage
{-# UNPACK #-} !(MutablePrimArray s (Ptr ()))
{-# UNPACK #-} !(MutablePrimArray s CUIntPtr)
newArgvStorage :: Int -> IO (ArgvStorage RealWorld)
newArgvStorage n = ArgvStorage <$> P.newPinnedPrimArray n <*> P.newPinnedPrimArray n
setArgvStorage
:: (All ValidArgument inputs, All ValidArgument outputs)
=> ArgvStorage RealWorld
-> Arguments inputs
-> Arguments outputs
-> IO ()
setArgvStorage (ArgvStorage argv scalarStorage) inputs outputs = do
let argvPtr = P.mutablePrimArrayContents argv
scalarStoragePtr = P.mutablePrimArrayContents scalarStorage
go :: All ValidArgument ts' => Int -> Arguments ts' -> IO Int
go !i Nil = pure i
go !i ((x :: t) ::: xs) = do
fillSlot
(castPtr $ argvPtr `P.advancePtr` i)
(castPtr $ scalarStoragePtr `P.advancePtr` i)
x
go (i + 1) xs
i <- go 0 inputs
_ <- go i outputs
touch argv
touch scalarStorage
-- | Specifies that the type can be used as an argument to a kernel.
class ValidArgument (t :: Type) where
fillSlot :: Ptr () -> Ptr () -> t -> IO ()
instance IsHalideType t => ValidArgument t where
fillSlot :: Ptr () -> Ptr () -> t -> IO ()
fillSlot argv scalarStorage x = do
poke (castPtr scalarStorage :: Ptr t) x
poke (castPtr argv :: Ptr (Ptr ())) scalarStorage
{-# INLINE fillSlot #-}
instance {-# OVERLAPPING #-} ValidArgument (Ptr CxxUserContext) where
fillSlot :: Ptr () -> Ptr () -> Ptr CxxUserContext -> IO ()
fillSlot argv scalarStorage x = do
poke (castPtr scalarStorage :: Ptr (Ptr CxxUserContext)) x
poke (castPtr argv :: Ptr (Ptr ())) scalarStorage
{-# INLINE fillSlot #-}
instance {-# OVERLAPPING #-} ValidArgument (Ptr (HalideBuffer n a)) where
fillSlot :: Ptr () -> Ptr () -> Ptr (HalideBuffer n a) -> IO ()
fillSlot argv _ x = do
poke (castPtr argv :: Ptr (Ptr (HalideBuffer n a))) x
{-# INLINE fillSlot #-}
class ValidArgument (Lowered t) => ValidParameter (t :: Type) where
appendToArgList :: Ptr (CxxVector CxxArgument) -> t -> IO ()
prepareParameter :: IO t
instance IsHalideType a => ValidParameter (Expr a) where
appendToArgList :: Ptr (CxxVector CxxArgument) -> Expr a -> IO ()
appendToArgList v expr =
asScalarParam expr $ \p ->
[CU.exp| void { $(std::vector<Halide::Argument>* v)->emplace_back(
$(Halide::Internal::Parameter const* p)->name(),
Halide::Argument::InputScalar,
$(Halide::Internal::Parameter const* p)->type(),
$(Halide::Internal::Parameter const* p)->dimensions(),
$(Halide::Internal::Parameter const* p)->get_argument_estimates()) } |]
prepareParameter :: IO (Expr a)
prepareParameter = ScalarParam <$> newIORef Nothing
instance (KnownNat n, IsHalideType a) => ValidParameter (Func t n a) where
appendToArgList :: Ptr (CxxVector CxxArgument) -> Func t n a -> IO ()
appendToArgList v func@(Param _) =
withBufferParam func $ \p ->
[CU.exp| void { $(std::vector<Halide::Argument>* v)->push_back(
*$(Halide::ImageParam const* p)) } |]
appendToArgList _ _ = error "appendToArgList called on Func; this should never happen"
prepareParameter :: IO (Func t n a)
prepareParameter = unsafeCoerce $ Param <$> newIORef Nothing
class PrepareParameters ts where
prepareParameters :: IO (Arguments ts)
instance PrepareParameters '[] where
prepareParameters :: IO (Arguments '[])
prepareParameters = pure Nil
instance (ValidParameter t, PrepareParameters ts) => PrepareParameters (t ': ts) where
prepareParameters :: IO (Arguments (t : ts))
prepareParameters = do
t <- prepareParameter @t
ts <- prepareParameters @ts
pure $ t ::: ts
prepareCxxArguments
:: forall ts b
. (All ValidParameter ts, KnownNat (Length ts))
=> Arguments ts
-> (Ptr (CxxVector CxxArgument) -> IO b)
-> IO b
prepareCxxArguments args action = do
let count = fromIntegral (natVal (Proxy @(Length ts)))
allocate =
[CU.block| std::vector<Halide::Argument>* {
auto p = new std::vector<Halide::Argument>{};
p->reserve($(size_t count));
return p;
} |]
destroy p = [CU.exp| void { delete $(std::vector<Halide::Argument>* p) } |]
bracket allocate destroy $ \v -> do
let go :: All ValidParameter ts' => Arguments ts' -> IO ()
go Nil = pure ()
go (x ::: xs) = appendToArgList v x >> go xs
go args
action v
deleteCxxUserContext :: FunPtr (Ptr CxxUserContext -> IO ())
deleteCxxUserContext = [C.funPtr| void deleteUserContext(Halide::JITUserContext* p) { delete p; } |]
wrapCxxUserContext :: Ptr CxxUserContext -> IO (ForeignPtr CxxUserContext)
wrapCxxUserContext = newForeignPtr deleteCxxUserContext
newEmptyCxxUserContext :: IO (ForeignPtr CxxUserContext)
newEmptyCxxUserContext =
wrapCxxUserContext =<< [CU.exp| Halide::JITUserContext* { new Halide::JITUserContext{} } |]
wrapCxxCallable :: Ptr CxxCallable -> IO (Callable inputs outputs)
wrapCxxCallable = fmap Callable . newForeignPtr deleter
where
deleter = [C.funPtr| void deleteCallable(Halide::Callable* p) { delete p; } |]
type Lowered :: forall k. k -> k
-- | Specifies how t'Expr' and t'Func' parameters become scalar and buffer arguments in compiled kernels.
type family Lowered (t :: k) :: k where
Lowered (Expr a) = a
Lowered (Func t n a) = Ptr (HalideBuffer n a)
Lowered '[] = '[]
Lowered (Expr a ': ts) = (a ': Lowered ts)
Lowered (Func t n a ': ts) = (Ptr (HalideBuffer n a) ': Lowered ts)
-- | A constraint that specifies that the function @f@ returns @'IO' ('Func' t n a)@.
class (FunctionReturn f ~ IO (Func t n a), IsHalideType a, KnownNat n) => ReturnsFunc f t n a | f -> t n a
instance (FunctionReturn f ~ IO (Func t n a), IsHalideType a, KnownNat n) => ReturnsFunc f t n a
type IsFuncBuilder f t n a =
( All ValidParameter (FunctionArguments f)
, All ValidArgument (Lowered (FunctionArguments f))
, UnCurry f (FunctionArguments f) (FunctionReturn f)
, PrepareParameters (FunctionArguments f)
, ReturnsFunc f t n a
, KnownNat (Length (FunctionArguments f))
, KnownNat (Length (Lowered (FunctionArguments f)))
)
buildFunc :: (IsFuncBuilder f t n a) => f -> IO (Arguments (FunctionArguments f), Func t n a)
buildFunc builder = do
parameters <- prepareParameters
func <- uncurryG builder parameters
pure (parameters, func)
newtype Callable (inputs :: [Type]) (output :: Type) = Callable (ForeignPtr CxxCallable)
compileToCallable
:: forall n a t f inputs output
. ( IsFuncBuilder f t n a
, Lowered (FunctionArguments f) ~ inputs
, Ptr (HalideBuffer n a) ~ output
)
=> Target
-> f
-> IO (Callable inputs output)
compileToCallable target builder = do
(args, func) <- buildFunc builder
prepareCxxArguments args $ \args' ->
withFunc func $ \func' ->
withCxxTarget target $ \target' ->
wrapCxxCallable
=<< [C.throwBlock| Halide::Callable* {
return handle_halide_exceptions([=]() {
return new Halide::Callable{
$(Halide::Func* func')->compile_to_callable(
*$(const std::vector<Halide::Argument>* args'),
*$(const Halide::Target* target'))};
});
} |]
where
_ = keepRedundantConstraint (Proxy @(Ptr (HalideBuffer n a) ~ output))
callableToFunction
:: forall inputs output kernel
. ( Curry inputs (output -> IO ()) kernel
, KnownNat (Length inputs)
, All ValidArgument inputs
, ValidArgument output
)
=> Callable inputs output
-> IO kernel
callableToFunction (Callable callable) = do
context <- newEmptyCxxUserContext
-- +1 comes from CxxUserContext and another +1 comes from output
let argc = 2 + fromIntegral (natVal (Proxy @(Length inputs)))
storage@(ArgvStorage argv scalarStorage) <- newArgvStorage (fromIntegral argc)
let argvPtr = P.mutablePrimArrayContents argv
contextPtr = unsafeForeignPtrToPtr context
callablePtr = unsafeForeignPtrToPtr callable
kernel args out = do
setArgvStorage storage (contextPtr ::: args) (out ::: Nil)
[CU.exp| void {
handle_halide_exceptions([=]() {
return $(Halide::Callable* callablePtr)->call_argv_fast(
$(int argc), $(const void* const* argvPtr));
})
} |]
touch argv
touch scalarStorage
touch context
touch callable
pure $ curryG @inputs @(output -> IO ()) kernel
-- | Convert a function that builds a Halide 'Func' into a normal Haskell function acccepting scalars and
-- 'HalideBuffer's.
--
-- For example:
--
-- @
-- builder :: Expr Float -> Func 'ParamTy 1 Float -> IO (Func 'FuncTy 1 Float)
-- builder scale inputVector = do
-- i <- 'mkVar' "i"
-- scaledVector <- 'define' "scaledVector" i $ scale * inputVector '!' i
-- pure scaledVector
-- @
--
-- The @builder@ function accepts a scalar parameter and a vector and scales the vector by the given factor.
-- We can now pass @builder@ to 'compile':
--
-- @
-- scaler <- 'compile' builder
-- 'withHalideBuffer' @1 @Float [1, 1, 1] $ \inputVector ->
-- 'allocaCpuBuffer' [3] $ \outputVector -> do
-- -- invoke the kernel
-- scaler 2.0 inputVector outputVector
-- -- print the result
-- print =<< 'peekToList' outputVector
-- @
compile
:: forall n a t f kernel
. ( IsFuncBuilder f t n a
, Curry (Lowered (FunctionArguments f)) (Ptr (HalideBuffer n a) -> IO ()) kernel
)
=> f
-- ^ Function to compile
-> IO kernel
-- ^ Compiled kernel
compile = compileForTarget hostTarget
-- | Similar to 'compile', but the first argument lets you explicitly specify the compilation target.
compileForTarget
:: forall n a t f kernel
. ( IsFuncBuilder f t n a
, Curry (Lowered (FunctionArguments f)) (Ptr (HalideBuffer n a) -> IO ()) kernel
)
=> Target
-> f
-> IO kernel
compileForTarget target builder = compileToCallable target builder >>= callableToFunction
-- | Format in which to return the lowered code.
data StmtOutputFormat
= -- | plain text
StmtText
| -- | HTML
StmtHTML
deriving stock (Show, Eq)
instance Enum StmtOutputFormat where
fromEnum =
fromIntegral . \case
StmtText -> [CU.pure| int { static_cast<int>(Halide::StmtOutputFormat::Text) } |]
StmtHTML -> [CU.pure| int { static_cast<int>(Halide::StmtOutputFormat::HTML) } |]
toEnum k
| fromIntegral k == [CU.pure| int { static_cast<int>(Halide::StmtOutputFormat::Text) } |] = StmtText
| fromIntegral k == [CU.pure| int { static_cast<int>(Halide::StmtOutputFormat::HTML) } |] = StmtHTML
| otherwise = error $ "invalid StmtOutputFormat " <> show k
-- | Get the internal representation of lowered code.
--
-- Useful for analyzing and debugging scheduling. Can emit HTML or plain text.
compileToLoweredStmt
:: forall n a t f. (IsFuncBuilder f t n a) => StmtOutputFormat -> Target -> f -> IO Text
compileToLoweredStmt format target builder = do
withSystemTempDirectory "halide-haskell" $ \dir -> do
let s = encodeUtf8 (pack (dir <> "/code.stmt"))
o = fromIntegral (fromEnum format)
(parameters, func) <- buildFunc builder
prepareCxxArguments parameters $ \v ->
withFunc func $ \f ->
withCxxTarget target $ \t ->
[C.throwBlock| void {
handle_halide_exceptions([=]() {
$(Halide::Func* f)->compile_to_lowered_stmt(
std::string{$bs-ptr:s, static_cast<size_t>($bs-len:s)},
*$(const std::vector<Halide::Argument>* v),
static_cast<Halide::StmtOutputFormat>($(int o)),
*$(Halide::Target* t));
});
} |]
T.readFile (dir <> "/code.stmt")