futhark-0.7.3: src/futhark-pyopencl.hs
{-# LANGUAGE FlexibleContexts #-}
module Main (main) where
import Control.Monad.IO.Class
import System.FilePath
import System.Directory
import Futhark.Pipeline
import Futhark.Passes
import qualified Futhark.CodeGen.Backends.PyOpenCL as PyOpenCL
import Futhark.Util.Pretty (prettyText)
import Futhark.Compiler.CLI
main :: IO ()
main = compilerMain () []
"Compile PyOpenCL" "Generate Python + OpenCL code from optimised Futhark program."
gpuPipeline $ \() mode outpath prog -> do
let class_name =
case mode of ToLibrary -> Just $ takeBaseName outpath
ToExecutable -> Nothing
pyprog <- either (`internalError` prettyText prog) return =<<
PyOpenCL.compileProg class_name prog
case mode of
ToLibrary ->
liftIO $ writeFile (outpath `addExtension` "py") pyprog
ToExecutable -> liftIO $ do
writeFile outpath pyprog
perms <- liftIO $ getPermissions outpath
setPermissions outpath $ setOwnerExecutable True perms