Is there an automatic way to memoise global polymorphic values in Haskell?

前端 未结 3 2155
野的像风
野的像风 2021-02-14 15:51

Polymorphic \"constants\", like 5 :: Num a => a, aren\'t really constants but functions of a dictionary argument. Hence, if you define

primes ::          


        
相关标签:
3条回答
  • 2021-02-14 16:28

    One could add Typeable constraint to n and use a different memoization table for every ground type n. You probably would need to exploit Dynamic and cast a lot for this, which is suboptimal. It also feels a bit hackish, too.

    In a dependently typed language, of course, one can model a map (n : Num) -> [n] which would not require the castss from Dynamic. Maybe something like that can be simulated exploiting GADTs and some kind of reification machinery.

    0 讨论(0)
  • 2021-02-14 16:43

    If you enable ConstraintKinds and ExistentialQuantification (or GADTs) you can reify type class dictionaries:

    {-# LANGUAGE ConstraintKinds, ExistentialQuantification #-}
    
    data Dict a = a => Dict
    

    If we try this out

    fibs :: Num n => [n]
    fibs = 1 : 1 : zipWith (+) fibs (drop 1 fibs)
    
    fibs' :: [Integer]
    fibs' = fibs
    
    
    fibsWithDict :: Dict (Num n) -> [n]
    fibsWithDict Dict = fs
      where
        fs = 1 : 1 : zipWith (+) fs (drop 1 fs)
    
    fibs'' :: [Integer]
    fibs'' = fibsWithDict Dict
    

    in GHCi we see

    λ> :set +s
    λ> 
    λ> fibs !! 29
    832040
    (2.66 secs, 721235304 bytes)
    λ> 
    λ> fibs !! 29
    832040
    (2.52 secs, 714054736 bytes)
    λ> 
    λ> 
    λ> fibs' !! 29
    832040
    (2.67 secs, 713510568 bytes)
    λ> 
    λ> fibs' !! 29
    832040
    (0.00 secs, 1034296 bytes)
    λ> 
    λ> 
    λ> fibs'' !! 29
    832040
    (0.00 secs, 1032624 bytes)
    

    So fibs'' is the only implementation of the three that immediately memoizes.

    Note that we have to pattern match on the Dict constructor. Otherwise, we will get an error about n not being constrained to have a Num instance (like you would expect if our signature was just fibsWithDict :: a -> [n]).

    This is a full solution since you can consider fibsWithDict Dict to be an expression that memoizes immediately at any type you throw at it (as long as it's an instance of Num). For example:

    λ> (fibsWithDict Dict !! 29) :: Double
    832040.0
    (0.00 secs, 1028384 bytes)
    

    EDIT: It looks like this explicit dictionary passing isn't necessary here and can be done implicitly by using ScopedTypeVariables with a local binding:

    {-# LANGUAGE ScopedTypeVariables #-}
    
    fibsImplicitDict :: forall a. Num a => [a]
    fibsImplicitDict
      = let fs :: [a]
            fs = 1 : 1 : zipWith (+) fs (drop 1 fs)
        in
        fs
    

    (Thanks to bennofs for the insight here!)

    0 讨论(0)
  • 2021-02-14 16:46

    It's fairly impossible for a fairly technical reasons. Type classes are open so, the polymorphic constant can't at compile time necessarily "see" how many types satisfy the constraint so it can't allocate that many monomorphic thunks. On the other side, a type class certainly can't see all the possible constants that it might generate, so the monomorphic thunks cannot be allocated in the type class dictionary.

    You will have to explicitly mention any types at which you want a monomorphic thunk allocated.

    0 讨论(0)
提交回复
热议问题