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
{-# OPTIONS_GHC -ddump-simpl -ddump-stg -ddump-asm -ddump-cmm -ddump-opt-cmm -ddump-to-file #-} | |
{-# LANGUAGE GHCForeignImportPrim, UnliftedFFITypes, MagicHash, UnboxedTuples, RecursiveDo, GeneralizedNewtypeDeriving, BangPatterns #-} | |
module Main where | |
import Data.Coerce | |
import Foreign | |
import Foreign.C.String | |
import qualified System.Posix.DynamicLinker as DL | |
import qualified System.Posix.Signals as Sig | |
import qualified Control.Concurrent.Async as Async |
This file has been truncated, but you can view the full file.
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
make -C testsuite/tests CLEANUP=1 SUMMARY_FILE=../../testsuite_summary.txt | |
make[1]: Entering directory '/home/alarm/clean_builds/ghc-8.0.1/testsuite/tests' | |
python2 ../driver/runtests.py -e ghc_compiler_always_flags="'-fforce-recomp -dcore-lint -dcmm-lint -dno-debug-output -fshow-warning-groups -no-user-package-db -rtsopts -fno-warn-tabs -fno-warn-missed-specialisations'" -e ghc_debugged=False -e ghc_with_native_codegen=0 -e ghc_with_vanilla=1 -e ghc_with_dynamic=1 -e ghc_with_profiling=1 -e ghc_with_threaded_rts=1 -e ghc_with_dynamic_rts=1 -e ghc_with_interpreter=1 -e ghc_unregisterised=0 -e ghc_dynamic_by_default=False -e ghc_dynamic=True -e ghc_with_smp=1 -e ghc_with_llvm=1 -e windows=False -e darwin=False -e in_tree_compiler=True -e clean_only=False --rootdir=. --configfile=../config/ghc -e 'config.confdir="../config"' -e 'config.platform="aarch64-unknown-linux"' -e 'config.os="linux"' -e 'config.arch="aarch64"' -e 'config.wordsize="64"' -e 'default_testopts.cleanup="1"' -e 'config.timeout=int() or confi |
This file has been truncated, but you can view the full file.
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
abakus | |
abakusa | |
abakusach | |
abakusami | |
abakusem | |
abakusie | |
abakusom | |
abakusowi | |
abakusów | |
abakusy |
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
/* ----------------------------------------------------------------------------- | |
* | |
* Module : Function | |
* Copyright : [2008..2014] Manuel M T Chakravarty, Gabriele Keller | |
* [2009..2014] Trevor L. McDonell | |
* License : BSD3 | |
* | |
* Maintainer : Trevor L. McDonell <[email protected]> | |
* Stability : experimental | |
* |
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 <stdlib.h> | |
#include <math.h> | |
#include <complex.h> | |
#include "../../cxsparse/Include/cs.h" | |
#include <fftw3.h> | |
float* cq_hanning_window(int length) { | |
float* result = fftwf_alloc_real(length); | |
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 <iostream> | |
#include <tuple> | |
#include <stack> | |
#include <vector> | |
std::stack<int> to132(std::stack<int> s) { | |
int first = s.top(); | |
s.pop(); | |
int second = s.top(); | |
s.pop(); |
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 MagicHash, RecordWildCards #-} | |
import qualified Data.Map as Map | |
import Data.List | |
import Data.Maybe | |
main = print $ recognize chords [F#,B,D#,A,E] | |
{-- types --} | |
type Interval = Int |