This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- echo "BuildFlavour = quick\n" > bquick | |
- cat bquick mk/build.mk.sample > mk/build.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OVERALL SUMMARY for test run started at Fri Jan 25 01:58:38 EST 2013 | |
3402 total tests, which gave rise to | |
16608 test cases, of which | |
10 caused framework failures | |
13530 were skipped | |
2971 expected passes | |
50 had missing libraries | |
35 expected failures |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE CPP #-} | |
{-# LANGUAGE DataKinds #-} | |
{-# LANGUAGE ScopedTypeVariables #-} | |
{-# LANGUAGE KindSignatures #-} | |
{-# LANGUAGE TypeFamilies #-} | |
{-# LANGUAGE Rank2Types #-} | |
{-# LANGUAGE MultiParamTypeClasses #-} | |
{-# LANGUAGE FlexibleContexts #-} | |
{-# LANGUAGE FlexibleInstances #-} | |
{-# LANGUAGE TemplateHaskell #-} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foldl'th f a ls = foldl' fth ath ls $! id | |
where | |
fth = \resAFun b comp -> | |
[|$(resAFun $! \aval -> [| case f aval b of v -> $(comp b) |]) |] | |
ath = \ comp -> [| case a of v -> $(comp v) |] | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foldrth op [] = [| id |] | |
foldrth op (l:ls) = [| \a -> case ($op a $l) of v-> $( foldrth op ls) v |] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE BangPatterns #-} | |
{-# LANGUAGE TemplateHaskell #-} | |
{-# LANGUAGE TupleSections #-} | |
module Data.Counting.HyperLogLog.Adjusted where | |
import Language.Haskell.TH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
heres some tools using haskell on embedded systems: | |
harduino http://leventerkok.github.com/hArduino/ | |
atom http://hackage.haskell.org/package/atom/ | |
and | |
copilot http://hackage.haskell.org/package/copilot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE BangPatterns #-} | |
module DFT where | |
import qualified Data.Vector.Unboxed as V | |
import qualified Data.Vector.Unboxed.Mutable as MV | |
import Data.Complex | |
import Control.Monad.Identity | |
--import |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// cmm code for CAS primop | |
stg_casMutVarzh ( gcptr mv, gcptr old, gcptr new ) | |
/* MutVar# s a -> a -> a -> State# s -> (# State#, Int#, a #) */ | |
{ | |
gcptr h; | |
(h) = ccall cas(mv + SIZEOF_StgHeader + OFFSET_StgMutVar_var, | |
old, new); | |
if (h != old) { | |
return (1,h); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
carter active/rounded ‹master*› » cabal build 1 ↵ | |
--> Building MPFR 3.1.0... | |
Command "make" failed with exit code: 2 | |
Making all in doc | |
make[1]: Nothing to be done for `all'. | |
Making all in src | |
make all-am | |
/bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_LOCALE_H=1 -DHAVE_WCHAR_H=1 -DHAVE_STDARG=1 -DHAVE_SYS_TIME_H=1 -DHAVE_ALLOCA_H=1 -DHAVE_STDINT_H=1 -DHAVE_VA_COPY=1 -DHAVE_SETLOCALE=1 -DHAVE_GETTIMEOFDAY=1 -DHAVE_LONG_LONG=1 -DHAVE_INTMAX_T=1 -DMPFR_HAVE_INTMAX_MAX=1 -DMPFR_HAVE_FESETROUND=1 -DHAVE_DENORMS=1 -DHAVE_ROUND=1 -DHAVE_TRUNC=1 -DHAVE_FLOOR=1 -DHAVE_CEIL=1 -DHAVE_NEARBYINT=1 -DHAVE_LDOUBLE_IEEE_EXT_LITTLE=1 -DMPFR_USE_THREAD_SAFE=1 -DLT_OBJDIR=\".libs/\" -DHAVE_ATTRIBUTE_MODE=1 -DHAVE___GMPN_ROOTREM=1 -DHAVE___GMPN_SBPI1_DIVAPPR_Q=1 -I. -Wall -Wmissing-prototypes -Wpointer-arith -O2 -pedantic -fomit-frame-pointer -m64 -mtune=corei7 -march=corei7 -MT exceptions.lo -MD -MP -MF .deps/ex |