-- GENERATED by C->Haskell Compiler, version 0.28.3 Switcheroo, 25 November 2017 (Haskell)
-- Edit the ORIGNAL .chs file instead!


{-# LINE 1 "src/Foreign/CUDA/Path.chs" #-}
{-# LANGUAGE CPP #-}
--------------------------------------------------------------------------------
-- |
-- Module    : Foreign.CUDA.Path
-- Copyright : [2017] Trevor L. McDonell
-- License   : BSD
--
--------------------------------------------------------------------------------

module Foreign.CUDA.Path (

  cudaInstallPath,
  cudaBinPath, cudaLibraryPath, cudaIncludePath,

) where



import System.FilePath

-- | The base path to the CUDA toolkit installation that this package was
-- compiled against.
--
cudaInstallPath :: FilePath
cudaInstallPath = "/usr/local/cuda-versions/9.1"
{-# LINE 23 "src/Foreign/CUDA/Path.chs" #-}


-- | The path where the CUDA toolkit executables, such as @nvcc@ and @ptxas@,
-- can be found.
--
cudaBinPath :: FilePath
cudaBinPath = cudaInstallPath </> "bin"

-- | The path where the CUDA libraries this package was linked against are
-- located
--
cudaLibraryPath :: FilePath
cudaLibraryPath = "/usr/local/cuda-versions/9.1/lib"
{-# LINE 35 "src/Foreign/CUDA/Path.chs" #-}


-- | The path where the CUDA headers this package was built against are located
--
cudaIncludePath :: FilePath
cudaIncludePath = cudaInstallPath </> "include"