clash-lib-1.8.0: src/Clash/Primitives/Sized/Vector.hs
{-|
Copyright : (C) 2020-2022 QBayLogic B.V.
2022 , Google Inc.
License : BSD2 (see the file LICENSE)
Maintainer : QBayLogic B.V. <devops@qbaylogic.com>
Blackbox implementations for functions in "Clash.Sized.Vector".
-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE TemplateHaskell #-}
module Clash.Primitives.Sized.Vector where
import Control.Monad (replicateM, zipWithM)
import Control.Monad.State (State)
import qualified Control.Lens as Lens
import Data.Either (rights)
import Data.List.Extra (iterateNM)
import Data.Maybe (fromMaybe, listToMaybe)
import Data.Monoid (Ap(getAp))
import Data.Text.Extra (showt)
import Data.Text.Prettyprint.Doc.Extra
(Doc, string, renderLazy, layoutPretty, LayoutOptions(..),
PageWidth(AvailablePerLine))
import Text.Trifecta.Result (Result(Success))
import qualified Data.String.Interpolate as I
import GHC.Stack (HasCallStack)
import Clash.Backend
(Backend, hdlTypeErrValue, expr, blockDecl)
import Clash.Core.TermInfo (isVar)
import Clash.Core.Type
(Type(LitTy), LitTy(NumTy), coreView)
import Clash.Netlist.BlackBox (isLiteral)
import Clash.Netlist.BlackBox.Util (renderElem)
import Clash.Netlist.BlackBox.Parser (runParse)
import Clash.Netlist.BlackBox.Types
(BlackBoxFunction, BlackBoxMeta(..), TemplateKind(TExpr, TDecl),
Element(Component, Typ, TypElem, Text), Decl(Decl), emptyBlackBoxMeta)
import Clash.Netlist.Types
(Identifier, TemplateFunction, BlackBoxContext, HWType(Vector), Usage(Cont),
Declaration(..), Expr(Literal,Identifier,DataCon,BlackBoxE), Literal(NumLit),
BlackBox(BBTemplate, BBFunction), TemplateFunction(..),
Modifier(Indexed, Nested, DC), HWType(..), BlackBoxContext(..),
emptyBBContext, tcCache)
import qualified Clash.Netlist.Id as Id
import Clash.Netlist.Util (typeSize)
import qualified Clash.Primitives.DSL as Prim
import Clash.Primitives.DSL
(declarationReturn, instHO, tInputs, tExprToInteger)
import Clash.Util (curLoc)
-- | Blackbox function for 'Clash.Sized.Vector.iterateI'
iterateBBF :: HasCallStack => BlackBoxFunction
iterateBBF _isD _primName args _resTy = do
tcm <- Lens.view tcCache
pure (Right (meta tcm, bb))
where
bb = BBFunction "Clash.Primitives.Sized.Vector.iterateBBF" 0 iterateTF
vecLength tcm =
case coreView tcm <$> rights args of
(LitTy (NumTy 0)):_ -> error "Unexpected empty vector in 'iterateBBF'"
(LitTy (NumTy n)):_ -> fromInteger (n - 1)
vl -> error $ "Unexpected vector length: " ++ show (listToMaybe vl)
meta tcm = emptyBlackBoxMeta {
bbKind=TDecl
, bbFunctionPlurality=[(1, vecLength tcm)]
}
-- | Type signature of function we're generating netlist for:
--
-- iterateI :: KnownNat n => (a -> a) -> a -> Vec n a
--
iterateTF :: TemplateFunction
iterateTF = TemplateFunction [] (const True) iterateTF'
iterateTF'
:: forall s
. (HasCallStack, Backend s)
=> BlackBoxContext
-> State s Doc
iterateTF' bbCtx
| [ (fromMaybe (error "n") . tExprToInteger -> n, _)
, _hoFunction
, (a, aType)
] <- tInputs bbCtx
, let aTemplateType = [TypElem (Typ (Just 2))]
, let inst arg = instHO bbCtx 1 (aType, aTemplateType) [(arg, aTemplateType)]
= declarationReturn bbCtx "iterateI" (fmap pure . Prim.vec =<< iterateNM (fromInteger n) inst a)
| otherwise
= error $ "Unexpected number of arguments: " ++ show (length (bbInputs bbCtx))
data FCall =
FCall
Identifier -- left
Identifier -- right
Identifier -- result
-- | Calculates the number of function calls needed for an evaluation of
-- 'Clash.Sized.Vector.fold', given the length of the vector given to fold.
foldFunctionPlurality :: HasCallStack => Int -> Int
foldFunctionPlurality 1 = 0
foldFunctionPlurality 2 = 1
foldFunctionPlurality n
| n <= 0 = error $ "functionPlurality: unexpected n: " ++ show n
| otherwise =
let (d, r) = n `divMod` 2 in
1 + foldFunctionPlurality d + foldFunctionPlurality (d+r)
-- | Blackbox function for 'Clash.Sized.Vector.fold'
foldBBF :: HasCallStack => BlackBoxFunction
foldBBF _isD _primName args _resTy = do
tcm <- Lens.view tcCache
let
bb = BBFunction "Clash.Primitives.Sized.Vector.foldTF" 0 foldTF
vecLengthMinusOne = case rights args of
(l:_) -> l
_ -> error ("foldBBF: bad Vec: " <> show args)
vecLength =
case coreView tcm vecLengthMinusOne of
(LitTy (NumTy n)) -> n + 1
vl -> error $ "Unexpected vector length: " ++ show vl
funcPlural = foldFunctionPlurality (fromInteger vecLength)
meta = emptyBlackBoxMeta {bbKind=TDecl, bbFunctionPlurality=[(0, funcPlural)]}
pure (Right (meta, bb))
-- | Type signature of function we're generating netlist for:
--
-- fold :: (a -> a -> a) -> Vec (n + 1) a -> a
--
-- The implementation promises to create a (balanced) tree structure.
foldTF :: TemplateFunction
foldTF = TemplateFunction [] (const True) foldTF'
foldTF' :: forall s . (HasCallStack, Backend s) => BlackBoxContext -> State s Doc
foldTF' bbCtx@(bbInputs -> [_f, (vec, vecType@(Vector n aTy), _isLiteral)]) = do
-- Create an id for every element in the vector
baseId <- Id.make "acc_0"
vecIds <- replicateM n (Id.next baseId)
vecId <- Id.make "vec"
let vecDecl = sigDecl vecType vecId
vecAssign = Assignment vecId Cont vec
elemAssigns = zipWith3 Assignment vecIds (repeat Cont) (map (iIndex vecId) [0..])
resultId =
case bbResults bbCtx of
[(Identifier t _, _)] -> t
_ -> error "Unexpected result identifier"
-- Create a list of function calls to be made (creates identifiers for
-- intermediate result signals)
(concat -> fCalls, result) <- mkTree 1 vecIds
let intermediateResultIds = concatMap (\(FCall l r _) -> [l, r]) fCalls
sigDecls = fmap (sigDecl aTy) (result : intermediateResultIds)
resultAssign = Assignment resultId Cont (Identifier result Nothing)
callDecls <- zipWithM callDecl [0..] fCalls
foldNm <- Id.make "fold"
getAp $ blockDecl foldNm $
resultAssign :
vecAssign :
vecDecl :
elemAssigns ++
sigDecls ++
callDecls
where
callDecl :: Int -> FCall -> State s Declaration
callDecl fSubPos (FCall a b r) = do
rendered0 <- string =<< (renderElem bbCtx call <*> pure 0)
let layout = LayoutOptions (AvailablePerLine 120 0.4)
rendered1 = renderLazy (layoutPretty layout rendered0)
pure (
BlackBoxD
"__FOLD_BB_INTERNAL__"
[] [] []
(BBTemplate [Text rendered1])
(emptyBBContext "__FOLD_BB_INTERNAL__")
)
where
call = Component (Decl fPos fSubPos (resEl:aEl:[bEl]))
elTyp = [TypElem (Typ (Just vecPos))]
resEl = ([Text (Id.toLazyText r)], elTyp)
aEl = ([Text (Id.toLazyText a)], elTyp)
bEl = ([Text (Id.toLazyText b)], elTyp)
-- Argument no. of function
fPos = 0
-- Argument no. of vector
vecPos = 1
-- Create the whole tree
mkTree
:: Int
-- ^ Current level
-> [Identifier]
-- ^ Elements left to process
-> State s ( [[FCall]] -- function calls to be rendered
, Identifier -- result signal
)
mkTree _lvl [] = error "Unreachable?"
mkTree _lvl [res] = pure ([], res)
mkTree lvl results0 = do
(calls0, results1) <- mkLevel (lvl, 0) results0
(calls1, result) <- mkTree (lvl+1) results1
pure (calls0 : calls1, result)
-- Create a single layer of a tree
mkLevel
:: (Int, Int)
-- ^ (level, offset)
-> [Identifier]
-> State s ([FCall], [Identifier])
mkLevel (!lvl, !offset) (a:b:rest) = do
c <- Id.makeBasic ("acc_" <> showt lvl <> "_" <> showt offset)
(calls, results) <- mkLevel (lvl, offset+1) rest
pure (FCall a b c:calls, c:results)
mkLevel _lvl rest =
pure ([], rest)
-- Simple wire without comment
sigDecl :: HWType -> Identifier -> Declaration
sigDecl typ nm = NetDecl Nothing nm typ
-- Index the intermediate vector. This uses a hack in Clash: the 10th
-- constructor of Vec doesn't exist; using it will be interpreted by the
-- HDL backends as vector indexing.
iIndex :: Identifier -> Int -> Expr
iIndex vecId i = Identifier vecId (Just (Indexed (vecType, 10, i)))
foldTF' args =
error $ "Unexpected number of arguments: " ++ show (length (bbInputs args))
indexIntVerilog :: BlackBoxFunction
indexIntVerilog _isD _primName args _ty = return bb
where
meta bbKi = emptyBlackBoxMeta{bbKind=bbKi}
bb = case args of
[_nTy,_aTy,_kn,Left v,Left ix] | isLiteral ix && isVar v ->
Right (meta TExpr, BBFunction "Clash.Primitives.Sized.Vector.indexIntVerilogTF" 0 indexIntVerilogTF)
[_nTy,_aTy,_kn,_v,Left ix] | isLiteral ix ->
case runParse bbTextLitIx of
Success t -> Right (meta TDecl, BBTemplate t)
_ -> Left "internal error: parse fail"
_ ->
case runParse bbText of
Success t -> Right (meta TDecl, BBTemplate t)
_ -> Left "internal error: parse fail"
bbText = [I.__i|
// index begin
~IF~SIZE[~TYP[1]]~THENwire ~TYPO ~GENSYM[vecArray][0] [0:~LIT[0]-1];
genvar ~GENSYM[i][2];
~GENERATE
for (~SYM[2]=0; ~SYM[2] < ~LIT[0]; ~SYM[2]=~SYM[2]+1) begin : ~GENSYM[mk_array][3]
assign ~SYM[0][(~LIT[0]-1)-~SYM[2]] = ~VAR[vecFlat][1][~SYM[2]*~SIZE[~TYPO]+:~SIZE[~TYPO]];
end
~ENDGENERATE
assign ~RESULT = ~SYM[0][~ARG[2]];~ELSEassign ~RESULT = ~ERRORO;~FI
// index end
|]
bbTextLitIx = [I.__i|
// index lit begin
~IF~SIZE[~TYP[1]]~THENassign ~RESULT = ~VAR[vec][1][~SIZE[~TYP[1]]-1-~LIT[2]*~SIZE[~TYPO] -: ~SIZE[~TYPO]];~ELSEassign ~RESULT = ~ERRORO;~FI
// index lit end
|]
indexIntVerilogTF :: TemplateFunction
indexIntVerilogTF = TemplateFunction used valid indexIntVerilogTemplate
where
used = [1,2]
valid = const True
indexIntVerilogTemplate
:: Backend s
=> BlackBoxContext
-> State s Doc
indexIntVerilogTemplate bbCtx
| [ _kn, (vec, vTy, _), (ix, _, _)] <- bbInputs bbCtx
, [(_,rTy)] <- bbResults bbCtx
= getAp $ case typeSize vTy of
0 -> hdlTypeErrValue rTy
_ -> case vec of
Identifier i mM -> do
let
ixI :: Expr -> Int
ixI ix0 = case ix0 of
Literal _ (NumLit j) ->
fromInteger j
DataCon (Signed _) (DC (Void{},_)) [Literal (Just (Signed _,_)) (NumLit j)] ->
fromInteger j
BlackBoxE "GHC.Types.I#" _lib _use _incl _templ Context{bbInputs=[(Literal _ (NumLit j),_,_)]} _paren ->
fromInteger j
_ ->
error ($(curLoc) ++ "Unexpected literal: " ++ show ix)
case mM of
Just m ->
expr False (Identifier i (Just (Nested m (Indexed (vTy,10,ixI ix)))))
_ -> expr False (Identifier i (Just (Indexed (vTy,10,ixI ix))))
_ -> error ($(curLoc) ++ "Expected Identifier: " ++ show vec)
| otherwise
= error ("indexIntVerilogTemplate: bad bbContext: " <> show bbCtx)