{-# LANGUAGE TemplateHaskell #-}

-- | Code snippets used by the Python backends.
module Futhark.CodeGen.RTS.Python
  ( memoryPy,
    openclPy,
    panicPy,
    scalarPy,
    serverPy,
    tuningPy,
    valuesPy,
  )
where

import Data.FileEmbed
import qualified Data.Text as T

-- | @rts/python/memory.py@
memoryPy :: T.Text
memoryPy :: Text
memoryPy = $(embedStringFile "rts/python/memory.py")

-- | @rts/python/opencl.py@
openclPy :: T.Text
openclPy :: Text
openclPy = $(embedStringFile "rts/python/opencl.py")

-- | @rts/python/panic.py@
panicPy :: T.Text
panicPy :: Text
panicPy = $(embedStringFile "rts/python/panic.py")

-- | @rts/python/scalar.py@
scalarPy :: T.Text
scalarPy :: Text
scalarPy = $(embedStringFile "rts/python/scalar.py")

-- | @rts/python/server.py@
serverPy :: T.Text
serverPy :: Text
serverPy = $(embedStringFile "rts/python/server.py")

-- | @rts/python/tuning.py@
tuningPy :: T.Text
tuningPy :: Text
tuningPy = $(embedStringFile "rts/python/tuning.py")

-- | @rts/python/values.py@
valuesPy :: T.Text
valuesPy :: Text
valuesPy = $(embedStringFile "rts/python/values.py")