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
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" |
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
[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. |
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
#include <stdio.h> | |
int add(int i, int j) | |
{ | |
return (i + j); | |
} | |
int sub(int i, int j) | |
{ | |
return (i - j); |
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
actor ProcedureUseActor() int In ==> int Out : | |
int val; | |
action In:[x] ==> Out:[out] | |
var int out | |
do | |
sqrtLookup(x); | |
out := val; | |
end |
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
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; | |
} |
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
/* C code */ | |
int add(int x, int y) | |
{ | |
return (x+y); | |
} | |
int main() | |
{ | |
return (add (2,3) ); | |
} |
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
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 |
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
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... |
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
>> ./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. |
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
./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. |