Skip to content

Instantly share code, notes, and snippets.

View robstewart57's full-sized avatar

Rob Stewart robstewart57

View GitHub Profile
cabal-helper-wrapper: Installing a private copy of Cabal because we couldn't
find the right version in your global/user package-db, this might take a
while but will only happen once per Cabal version you're using.
If anything goes horribly wrong just delete this directory and try again:
/home/rob/.ghc-mod/cabal-helper
If you want to avoid this automatic installation altogether install
version 1.18.1.3 of Cabal manually (into your user or global package-db):
$ cabal install Cabal --constraint "Cabal == 1.18.1.3"
@robstewart57
robstewart57 / purity-haskell-freenode
Created August 12, 2015 18:17
Confusion about analogy's of purity in Haskell
[18:27] <trumanshow19> Would someone mind help iron out the
inconsistencies in my head with respect to purity in
Haskell. Statement 1: Haskell is a purely functional lanugage, S2:
Haskell is not impure, but... S3: f :: a -> a is a "pure" function as
opposed to a -> IO a.
[18:27] <trumanshow19> If a -> is pure, to distinguish a -> IO a, then
how do I describe the latter, is there is no impurity in Haskell ?
[18:28] <trumanshow19> The only opposite of pure I know is impure.
@robstewart57
robstewart57 / C to LLVM
Last active September 19, 2017 21:43
LLVM function pointers
#include <stdio.h>
int add(int i, int j)
{
return (i + j);
}
int sub(int i, int j)
{
return (i - j);
@robstewart57
robstewart57 / my-actor.cal
Created February 28, 2015 00:50
CAL procedure with if sequences
actor ProcedureUseActor() int In ==> int Out :
int val;
action In:[x] ==> Out:[out]
var int out
do
sqrtLookup(x);
out := val;
end
int a[10];
for (int i; i<100000; i++) {
a[i] = i * 4;
}
int b[10];
for (int i; i<100000; i++) {
b[i] = a[i] + 3;
}
/* C code */
int add(int x, int y)
{
return (x+y);
}
int main()
{
return (add (2,3) );
}
@robstewart57
robstewart57 / xmonad.hs
Last active August 29, 2015 14:13
My xmonad configuration
import XMonad
import XMonad.Hooks.SetWMName
import XMonad.Actions.SpawnOn
{- workspace 1: a terminal
workspace 2: emacs
workspace 3: web browser -}
main :: IO ()
main = xmonad defaultConfig
{ modMask = mod4Mask
@robstewart57
robstewart57 / coregen.log
Created July 22, 2014 18:43
corgen.log of ttanetgen targetting Virtex6 xc6vlx240t
INFO:encore:314 - Created non-GUI application for batch mode execution.
INFO:sim:172 - Generating IP...
Resolving generics for 'dram_2p_smem_37'...
Applying external generics to 'dram_2p_smem_37'...
Delivering associated files for 'dram_2p_smem_37'...
Delivering EJava files for 'dram_2p_smem_37'...
Generating implementation netlist for 'dram_2p_smem_37'...
INFO:sim - Pre-processing HDL files for 'dram_2p_smem_37'...
Running synthesis for 'dram_2p_smem_37'
Running ngcbuild...
@robstewart57
robstewart57 / gist:6a96f8302cd4c5f48beb
Created July 22, 2014 18:16
Output of ttanetgen targetting Virtex6 xc6vlx240t
>> ./libs/ttanetgen -c .
*********************************************************************
* Compile the application for the TTA processors network
*********************************************************************
>> Compile code of processor_decoder_parser_parseheaders.
>> Compile code of processor_decoder_parser_mvseq.
>> Compile code of processor_decoder_texture_IAP.
>> Compile code of processor_decoder_texture_DCsplit.
>> Compile code of processor_decoder_motion_interpolation.
>> Compile code of processor_decoder_texture_idct2d.
@robstewart57
robstewart57 / ttanetgen.log
Created July 22, 2014 18:13
Output of ttanetgen targetting Zedboard xc7z020
./libs/ttanetgen -c .
*********************************************************************
* Compile the application for the TTA processors network
*********************************************************************
>> Compile code of processor_decoder_parser_parseheaders.
>> Compile code of processor_decoder_parser_mvseq.
>> Compile code of processor_decoder_texture_idct2d.
>> Compile code of processor_decoder_texture_IAP.
>> Compile code of processor_decoder_motion_interpolation.