Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
phadej committed Apr 25, 2024
1 parent b385254 commit 1b8ca35
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
12 changes: 12 additions & 0 deletions bench/macro/lsm-tree-bench-wp8.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module Main (main) where

import Data.Void (Void)
import qualified Data.ByteString as BS
import qualified Data.ByteString.Short as SBS

type K = BS.ByteString
type V = BS.ByteString
type B = Void

main :: IO ()
main = putStrLn "hello"
25 changes: 25 additions & 0 deletions lsm-tree.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,31 @@ benchmark lsm-tree-macro-bench

ghc-options: -rtsopts -with-rtsopts=-T -threaded

benchmark lsm-tree-bench-wp8
import: warnings, wno-x-partial
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: bench/macro src-extras
main-is: lsm-tree-bench-wp8.hs
other-modules:
Database.LSMTree.Extras.Orphans

build-depends:
, base
, lsm-tree
, lsm-tree:bloomfilter
, bytestring
, cryptohash-sha256
, primitive
, random
, time
, vector
, optparse-applicative
, wide-word

ghc-options: -rtsopts -with-rtsopts=-T -threaded


library kmerge
import: language, warnings, wno-x-partial
hs-source-dirs: src-kmerge
Expand Down

0 comments on commit 1b8ca35

Please sign in to comment.