aboutsummaryrefslogtreecommitdiff
path: root/src/Data/Array/Nested
diff options
context:
space:
mode:
authorTom Smeding <tom@tomsmeding.com>2024-05-21 10:34:55 +0200
committerTom Smeding <tom@tomsmeding.com>2024-05-21 10:34:55 +0200
commitd4086966b95c2ed556f5628a4cfcc41f5e19fab7 (patch)
tree9e5698c36a826867a1bb6e2831dd3fdaf9e89b9d /src/Data/Array/Nested
parentfbafff808a215cc20934d3ea0c72b8aa0e599160 (diff)
Add Float primitive type
Diffstat (limited to 'src/Data/Array/Nested')
-rw-r--r--src/Data/Array/Nested/Internal.hs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Data/Array/Nested/Internal.hs b/src/Data/Array/Nested/Internal.hs
index a8db1b6..66b3130 100644
--- a/src/Data/Array/Nested/Internal.hs
+++ b/src/Data/Array/Nested/Internal.hs
@@ -438,6 +438,7 @@ instance PrimElt Int
instance PrimElt Int64
instance PrimElt Int32
instance PrimElt CInt
+instance PrimElt Float
instance PrimElt Double
instance PrimElt ()
@@ -466,6 +467,7 @@ newtype instance Mixed sh Int = M_Int (Mixed sh (Primitive Int)) deriving (Show)
newtype instance Mixed sh Int64 = M_Int64 (Mixed sh (Primitive Int64)) deriving (Show)
newtype instance Mixed sh Int32 = M_Int32 (Mixed sh (Primitive Int32)) deriving (Show)
newtype instance Mixed sh CInt = M_CInt (Mixed sh (Primitive CInt)) deriving (Show)
+newtype instance Mixed sh Float = M_Float (Mixed sh (Primitive Float)) deriving (Show)
newtype instance Mixed sh Double = M_Double (Mixed sh (Primitive Double)) deriving (Show)
newtype instance Mixed sh () = M_Nil (Mixed sh (Primitive ())) deriving (Show) -- no content, orthotope optimises this (via Vector)
-- etc.
@@ -491,6 +493,7 @@ newtype instance MixedVecs s sh Int64 = MV_Int64 (VS.MVector s Int64)
newtype instance MixedVecs s sh Int32 = MV_Int32 (VS.MVector s Int32)
newtype instance MixedVecs s sh CInt = MV_CInt (VS.MVector s CInt)
newtype instance MixedVecs s sh Double = MV_Double (VS.MVector s Double)
+newtype instance MixedVecs s sh Float = MV_Float (VS.MVector s Float)
newtype instance MixedVecs s sh () = MV_Nil (VS.MVector s ()) -- no content, MVector optimises this
-- etc.
@@ -661,6 +664,7 @@ deriving via Primitive Int64 instance Elt Int64
deriving via Primitive Int32 instance Elt Int32
deriving via Primitive CInt instance Elt CInt
deriving via Primitive Double instance Elt Double
+deriving via Primitive Float instance Elt Float
deriving via Primitive () instance Elt ()
instance Storable a => KnownElt (Primitive a) where
@@ -674,6 +678,7 @@ deriving via Primitive Int64 instance KnownElt Int64
deriving via Primitive Int32 instance KnownElt Int32
deriving via Primitive CInt instance KnownElt CInt
deriving via Primitive Double instance KnownElt Double
+deriving via Primitive Float instance KnownElt Float
deriving via Primitive () instance KnownElt ()
-- Arrays of pairs are pairs of arrays.