summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorDominic Steinitz <dominic@steinitz.org>2018-03-29 18:11:24 +0100
committerDominic Steinitz <dominic@steinitz.org>2018-03-29 18:11:24 +0100
commit71a3071a0ecc5c8ebf2b9c0a66a472ff187fdd06 (patch)
tree4067975ada9ba1563bf535b30f98d84cf3c7c209 /packages
parent348235b04519f7420a2149e979d076302f869ed9 (diff)
Use more meaningful names
Diffstat (limited to 'packages')
-rw-r--r--packages/sundials/src/Bar.hsc9
-rw-r--r--packages/sundials/src/Numeric/Sundials/ARKode/ODE.hs28
-rw-r--r--packages/sundials/src/Types.hs14
-rw-r--r--packages/sundials/src/helpers.h5
4 files changed, 18 insertions, 38 deletions
diff --git a/packages/sundials/src/Bar.hsc b/packages/sundials/src/Bar.hsc
index 7d53af9..4fe1b4b 100644
--- a/packages/sundials/src/Bar.hsc
+++ b/packages/sundials/src/Bar.hsc
@@ -10,15 +10,14 @@ import Foreign.C.String
10#include "/Users/dom/sundials/include/nvector/nvector_serial.h" 10#include "/Users/dom/sundials/include/nvector/nvector_serial.h"
11#include "/Users/dom/sundials/include/arkode/arkode.h" 11#include "/Users/dom/sundials/include/arkode/arkode.h"
12 12
13#def typedef struct _generic_N_Vector BarType; 13#def typedef struct _generic_N_Vector SunVector;
14#def typedef struct _N_VectorContent_Serial BazType; 14#def typedef struct _N_VectorContent_Serial SunContent;
15
16 15
17getContentPtr :: Storable a => Ptr b -> IO a 16getContentPtr :: Storable a => Ptr b -> IO a
18getContentPtr ptr = (#peek BarType, content) ptr 17getContentPtr ptr = (#peek SunVector, content) ptr
19 18
20getData :: Storable a => Ptr b -> IO a 19getData :: Storable a => Ptr b -> IO a
21getData ptr = (#peek BazType, data) ptr 20getData ptr = (#peek SunContent, data) ptr
22 21
23arkSMax :: Int 22arkSMax :: Int
24arkSMax = #const ARK_S_MAX 23arkSMax = #const ARK_S_MAX
diff --git a/packages/sundials/src/Numeric/Sundials/ARKode/ODE.hs b/packages/sundials/src/Numeric/Sundials/ARKode/ODE.hs
index 44b724e..b621c58 100644
--- a/packages/sundials/src/Numeric/Sundials/ARKode/ODE.hs
+++ b/packages/sundials/src/Numeric/Sundials/ARKode/ODE.hs
@@ -61,9 +61,9 @@ import qualified Types as T
61import Bar (sDIRK_2_1_2, kVAERNO_4_2_3) 61import Bar (sDIRK_2_1_2, kVAERNO_4_2_3)
62import qualified Bar as B 62import qualified Bar as B
63 63
64
64C.context (C.baseCtx <> C.vecCtx <> C.funCtx <> T.sunCtx) 65C.context (C.baseCtx <> C.vecCtx <> C.funCtx <> T.sunCtx)
65 66
66-- C includes
67C.include "<stdlib.h>" 67C.include "<stdlib.h>"
68C.include "<stdio.h>" 68C.include "<stdio.h>"
69C.include "<math.h>" 69C.include "<math.h>"
@@ -77,26 +77,16 @@ C.include "<sundials/sundials_math.h>"
77C.include "../../../helpers.h" 77C.include "../../../helpers.h"
78 78
79 79
80-- These were semi-generated using hsc2hs with Bar.hsc as the
81-- template. They are probably very fragile and could easily break on
82-- different architectures and / or changes in the sundials package.
83
84getContentPtr :: Storable a => Ptr b -> IO a
85getContentPtr ptr = ((\hsc_ptr -> peekByteOff hsc_ptr 0)) ptr
86
87getData :: Storable a => Ptr b -> IO a
88getData ptr = ((\hsc_ptr -> peekByteOff hsc_ptr 16)) ptr
89
90getDataFromContents :: Storable b => Int -> Ptr a -> IO (V.Vector b) 80getDataFromContents :: Storable b => Int -> Ptr a -> IO (V.Vector b)
91getDataFromContents len ptr = do 81getDataFromContents len ptr = do
92 qtr <- getContentPtr ptr 82 qtr <- B.getContentPtr ptr
93 rtr <- getData qtr 83 rtr <- B.getData qtr
94 vectorFromC len rtr 84 vectorFromC len rtr
95 85
96putDataInContents :: Storable a => V.Vector a -> Int -> Ptr b -> IO () 86putDataInContents :: Storable a => V.Vector a -> Int -> Ptr b -> IO ()
97putDataInContents vec len ptr = do 87putDataInContents vec len ptr = do
98 qtr <- getContentPtr ptr 88 qtr <- B.getContentPtr ptr
99 rtr <- getData qtr 89 rtr <- B.getData qtr
100 vectorToC vec len rtr 90 vectorToC vec len rtr
101 91
102-- Utils 92-- Utils
@@ -199,7 +189,7 @@ solveOdeC method relTol absTol fun f0 ts = unsafePerformIO $ do
199 diagMut <- V.thaw diagnostics 189 diagMut <- V.thaw diagnostics
200 -- We need the types that sundials expects. These are tied together 190 -- We need the types that sundials expects. These are tied together
201 -- in 'Types'. FIXME: The Haskell type is currently empty! 191 -- in 'Types'. FIXME: The Haskell type is currently empty!
202 let funIO :: CDouble -> Ptr T.BarType -> Ptr T.BarType -> Ptr () -> IO CInt 192 let funIO :: CDouble -> Ptr T.SunVector -> Ptr T.SunVector -> Ptr () -> IO CInt
203 funIO x y f _ptr = do 193 funIO x y f _ptr = do
204 -- Convert the pointer we get from C (y) to a vector, and then 194 -- Convert the pointer we get from C (y) to a vector, and then
205 -- apply the user-supplied function. 195 -- apply the user-supplied function.
@@ -240,7 +230,7 @@ solveOdeC method relTol absTol fun f0 ts = unsafePerformIO $ do
240 230
241 /* Here we use the C types defined in helpers.h which tie up with */ 231 /* Here we use the C types defined in helpers.h which tie up with */
242 /* the Haskell types defined in Types */ 232 /* the Haskell types defined in Types */
243 flag = ARKodeInit(arkode_mem, NULL, $fun:(int (* funIO) (double t, BarType y[], BarType dydt[], void * params)), T0, y); 233 flag = ARKodeInit(arkode_mem, NULL, $fun:(int (* funIO) (double t, SunVector y[], SunVector dydt[], void * params)), T0, y);
244 if (check_flag(&flag, "ARKodeInit", 1)) return 1; 234 if (check_flag(&flag, "ARKodeInit", 1)) return 1;
245 235
246 /* Set routines */ 236 /* Set routines */
@@ -378,7 +368,7 @@ getButcherTable method = unsafePerformIO $ do
378 btAsMut <- V.thaw btAs 368 btAsMut <- V.thaw btAs
379 -- We need the types that sundials expects. These are tied together 369 -- We need the types that sundials expects. These are tied together
380 -- in 'Types'. FIXME: The Haskell type is currently empty! 370 -- in 'Types'. FIXME: The Haskell type is currently empty!
381 let funIO :: CDouble -> Ptr T.BarType -> Ptr T.BarType -> Ptr () -> IO CInt 371 let funIO :: CDouble -> Ptr T.SunVector -> Ptr T.SunVector -> Ptr () -> IO CInt
382 funIO x y f _ptr = do 372 funIO x y f _ptr = do
383 -- Convert the pointer we get from C (y) to a vector, and then 373 -- Convert the pointer we get from C (y) to a vector, and then
384 -- apply the user-supplied function. 374 -- apply the user-supplied function.
@@ -411,7 +401,7 @@ getButcherTable method = unsafePerformIO $ do
411 arkode_mem = ARKodeCreate(); /* Create the solver memory */ 401 arkode_mem = ARKodeCreate(); /* Create the solver memory */
412 if (check_flag((void *)arkode_mem, "ARKodeCreate", 0)) return 1; 402 if (check_flag((void *)arkode_mem, "ARKodeCreate", 0)) return 1;
413 403
414 flag = ARKodeInit(arkode_mem, NULL, $fun:(int (* funIO) (double t, BarType y[], BarType dydt[], void * params)), T0, y); 404 flag = ARKodeInit(arkode_mem, NULL, $fun:(int (* funIO) (double t, SunVector y[], SunVector dydt[], void * params)), T0, y);
415 if (check_flag(&flag, "ARKodeInit", 1)) return 1; 405 if (check_flag(&flag, "ARKodeInit", 1)) return 1;
416 406
417 flag = ARKodeSetIRKTableNum(arkode_mem, $(int mN)); 407 flag = ARKodeSetIRKTableNum(arkode_mem, $(int mN));
diff --git a/packages/sundials/src/Types.hs b/packages/sundials/src/Types.hs
index 9654527..e910c57 100644
--- a/packages/sundials/src/Types.hs
+++ b/packages/sundials/src/Types.hs
@@ -9,31 +9,23 @@
9module Types where 9module Types where
10 10
11import Foreign.C.Types 11import Foreign.C.Types
12import Foreign.Ptr (Ptr)
13
14import Foreign.Storable (Storable(..))
15 12
16import qualified Language.Haskell.TH as TH 13import qualified Language.Haskell.TH as TH
17import qualified Language.C.Types as CT 14import qualified Language.C.Types as CT
18import qualified Data.Map as Map 15import qualified Data.Map as Map
19import Language.C.Inline.Context 16import Language.C.Inline.Context
20 17
21data BarType
22 18
23instance Storable BarType where 19data SunVector
24 sizeOf _ = sizeOf (undefined :: BarType)
25 alignment _ = alignment (undefined :: Ptr ())
26 peek _ = error "peek not implemented for BarType"
27 poke _ _ = error "poke not implemented for BarType"
28 20
29-- This is a lie!!! 21-- FIXME: Is this true?
30type SunIndexType = CLong 22type SunIndexType = CLong
31 23
32sunTypesTable :: Map.Map CT.TypeSpecifier TH.TypeQ 24sunTypesTable :: Map.Map CT.TypeSpecifier TH.TypeQ
33sunTypesTable = Map.fromList 25sunTypesTable = Map.fromList
34 [ 26 [
35 (CT.TypeName "sunindextype", [t| SunIndexType |] ) 27 (CT.TypeName "sunindextype", [t| SunIndexType |] )
36 , (CT.TypeName "BarType", [t| BarType |] ) 28 , (CT.TypeName "SunVector", [t| SunVector |] )
37 ] 29 ]
38 30
39sunCtx :: Context 31sunCtx :: Context
diff --git a/packages/sundials/src/helpers.h b/packages/sundials/src/helpers.h
index 5c1d9f3..b41ab73 100644
--- a/packages/sundials/src/helpers.h
+++ b/packages/sundials/src/helpers.h
@@ -8,8 +8,7 @@
8#define FSYM "f" 8#define FSYM "f"
9#endif 9#endif
10 10
11typedef struct _generic_N_Vector BarType; 11typedef struct _generic_N_Vector SunVector;
12typedef struct _N_VectorContent_Serial BazType;
13 12
14/* Check function return value... 13/* Check function return value...
15 opt == 0 means SUNDIALS function allocates memory so check if 14 opt == 0 means SUNDIALS function allocates memory so check if
@@ -17,6 +16,6 @@ typedef struct _N_VectorContent_Serial BazType;
17 opt == 1 means SUNDIALS function returns a flag so check if 16 opt == 1 means SUNDIALS function returns a flag so check if
18 flag >= 0 17 flag >= 0
19 opt == 2 means function allocates memory so check if returned 18 opt == 2 means function allocates memory so check if returned
20 NULL pointer 19 NULL pointer
21*/ 20*/
22int check_flag(void *flagvalue, const char *funcname, int opt); 21int check_flag(void *flagvalue, const char *funcname, int opt);