• Stars
    star
    163
  • Rank 231,141 (Top 5 %)
  • Language
    Haskell
  • License
    Other
  • Created over 7 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A language experiment -- irc.freenode.net ##coda

coda

Travis Continuous Integration Status

This package will eventually provide a toy compiler.

For now, it provides an entertaining series of crashes and confusing error messages.

Table of Contents

Installation

To install the coda executable, you will need GHC 8.4.1 release candidate 1 or later, and you'll need to run cabal new-build, and fish through dist-newstyle for the executable and put it somewhere in your path.

Once cabal new-install works, this will become a lot easier.

To work on the extension, you'll need to:

  1. Download the repository from https://github.com/ekmett/coda if that isn't where you are reading this file from.

  2. Run code . from root of that repository

  3. Start debugging to launch the extension-host following the instructions in Running and Debugging Your Extension.

Alternately you can link the directory directly into your ~/.vscode/extensions folder, which may be useful if you're working on the typescript bits.

Autocompletion

Once you have an installed coda executable, bash command line autocompletion is available with:

$ source <(coda --bash-completion-script `which coda`)

You can add this to your .profile or .bashrc

Requirements

Currently, the build process is being tested on GHC 8.2, but I'm not actively doing anything to shut off older GHCs or newer ones.

Patches that help increase portability are welcome.

Documentation

Once there is an actual language here documentation will be forthcoming on it.

In the meantime, API documentation is available from https://ekmett.github.io/coda/

Directories

Directory Usage
.vscode Visual Studio Code configuration for the current workspace
bin Executable scripts
lib/coda* Haskell code for the language
code Typescript code for the extension
images The logo, etc.
test/code Typescript code for testing

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual-licensed as above, without any additional terms or conditions.

Contact Information

Contributions and bug reports are welcome!

Please feel free to contact me through github or on the ##coda or #haskell IRC channels on irc.freenode.net.

-Edward Kmett

What is all this about?

This is the response from ekmett to this question on reddit:

The short version of what coda is about is fixing a number of things that keep functional programming from scaling.

I'm leaving what particular dimension 'scaling' applies to as a free variable.

One way we can fill in that variable is to talk about execution speed:

FP has been good at getting us code that scales down to the core level, but we aren't getting more cores terribly fast. Moore's law used to equate to speed, then it equated to speed * cores, now it mostly equates to speed * cores * width of the SIMD processing unit when it applies at all. I'm interested in ways to apply SPMD-on-SIMD evaluation techniques to functional programming. These are the techniques that make the Intel SPMD Program Compiler work as well as it does. It also provides a window onto how to execute this sort of code on GPU and TPU style hardware. If I want symbol pushing techniques to be at all relevant in a world where these are becoming the norm, we can't fail to scale past the core.

One way we can fill in that variable is to talk about scalability of abstraction:

The typeclass mechanism Haskell uses favors finding a few good abstractions over accurate abstraction selection. If I tried to make the standard library of Haskell have a mathematical concept of a 'Field' and put 600 superclasses with all of the algebra I know above that point, the community would mutiny on day 1. On day 30 when I found it should be 601, and went to make the change all of that code would break. How can we make deep extensible type classes with typeclass hierarchies that actually branch out and aren't linear chains?

One way we can fill in that variable is to talk about scalability of the library ecosystem:

Another dimension where I don't see it scaling is that there are a number of language design decisions in Haskell that keep me from scaling. I maintain a rather ridiculous number of Haskell libraries, all of which have to work together. Haskell is pretty darn good at solving diamond dependency issues, compared to something like node, which just ignores the problem, in a way that makes it easy to depend on ridiculous numbers of dependencies, but building a haskell project still consists of spending 97%+ of your time compiling instances for classes that never occur in the final program in a way that is forced by the structure of package management. You have to supply instances for every package that came before you in the Haskell ecosystem or you are just incompatible because of uniqueness of instance resolution. Orphan instance packages can be forgotten or mis-used. How do we fix this problem?

One way we can fill in that variable is to talk about scalability of proof effort:

It took 13000 lines of basically nonreusable code, 9 months worth of effort and a PhD to prove the correctness of the GMP sqrt function. Most issues I'm interested in are bigger than that.

There are other directions to explore here.

How to scale in terms of parallelizing team efforts? e.g. Letting more people work on proof infrastructure.

How to factor apart what it means to prove something correct, and finding a space of equivalent, correct programs, and then to make it fast by selecting tactics style out of a space of equivalent correct programs the one you want?

How to throw program synthesis techniques at problems to increase the grain size of problems that the compiler just handles for you? The work on synquid by Nadia Polikarpova, Barliman by Will Byrd, and Blodwen by Edwin Brady all point generally at something in this space. Each offers different ways to prune the search space drastically by using types or different generation techniques.

How to scale the number of machines that are used for synthesis? I know tons of people who work in rendering films. There we spin up 10k+ machines to save artist time. Is developer time less valuable? This also drastically changes the scope of what is considered synthesizable when this is your baseline.

Most of my efforts lately have gone into this subgoal of program synthesis, hence coda itself has languished while I build the pieces there that I need to build the type checker infrastructure on top of. The irony is not lost upon me that this languishing arises largely due to my inability to scale up my own local development efforts, personally.

More Repositories

1

lens

Lenses, Folds, and Traversals - Join us on web.libera.chat #haskell-lens
Haskell
2,030
star
2

ad

Automatic Differentiation
Haskell
370
star
3

machines

Networks of composable stream transducers
Haskell
340
star
4

trifecta

Parser combinators with highlighting, slicing, layout, literate comments, Clang-style diagnostics and the kitchen sink
Haskell
297
star
5

guanxi

Relational programming in Haskell. Mostly developed on twitch.
Haskell
253
star
6

quine

haskell, opengl, toy project
Haskell
210
star
7

linear

Low-dimensional linear algebra primitives for Haskell.
Haskell
198
star
8

propagators

The Art of the Propagator. See also:
Haskell
167
star
9

free

free monads
Haskell
161
star
10

hask

Category theory for Haskell with a lens flavor (you need GHC 7.8.3, not 7.8.2 to build this!)
Haskell
161
star
11

discrimination

Fast linear time sorting and discrimination for a large class of data types
Haskell
134
star
12

bound

Combinators for manipulating locally-nameless generalized de Bruijn terms
Haskell
121
star
13

reflection

Reifies arbitrary Haskell terms into types that can be reflected back into terms
Haskell
102
star
14

algebra

constructive abstract algebra
Haskell
98
star
15

succinct

playground for working with succinct data structures
Haskell
94
star
16

gl

Complete raw OpenGL bindings for Haskell
Haskell
93
star
17

parsers

Generic parser combinators
Haskell
88
star
18

linear-logic

Haskell
82
star
19

comonad

Haskell 98 comonads
Haskell
78
star
20

tables

Deprecated because of
Haskell
78
star
21

semigroupoids

Haskell
75
star
22

kan-extensions

Kan extensions, Kan lifts, the Yoneda lemma, and (co)monads generated by a functor
Haskell
74
star
23

contravariant

Haskell 98 contravariant functors
Haskell
72
star
24

constraints

Tools for programming with ConstraintKinds in GHC
Haskell
71
star
25

profunctors

Haskell 98 Profunctors
Haskell
69
star
26

cadenza

every day i'm truffling
Kotlin
67
star
27

codex

UI experiments for coda
Haskell
65
star
28

approximate

Approximate discrete values and numbers
Haskell
64
star
29

structures

A playground for working on advanced data structures in Haskell
Haskell
63
star
30

ersatz

A monad for interfacing with external SAT solvers
Haskell
63
star
31

semigroups

Haskell 98 semigroups
Haskell
62
star
32

bifunctors

Haskell 98 bifunctors, bifoldables and bitraversables
Haskell
57
star
33

either

the EitherT monad transformer
Haskell
55
star
34

unpacked-containers

Unpacked containers using backpack
Haskell
52
star
35

exceptions

mtl friendly exceptions
Haskell
49
star
36

structs

Exploring how to make a strict imperative universe in the GHC runtime system.
Haskell
48
star
37

reducers

Semigroups, specialized containers and a general map/reduce framework
Haskell
46
star
38

adjunctions

Simple adjunctions
Haskell
44
star
39

auth

Haskell
41
star
40

distributive

Dual Traversable
Haskell
41
star
41

graphs

a monadic graph library
Haskell
39
star
42

zippers

Zippers based on lenses and traversals
Haskell
38
star
43

tagged

phantom types
Haskell
37
star
44

unboxed

experimenting with unlifted classes via backpack
Haskell
36
star
45

perhaps

A monad, perhaps.
Haskell
33
star
46

rounded

MPFR bindings for Haskell
Haskell
33
star
47

hyphenation

Knuth-Liang Hyphenation for Haskell based on TeX hyphenation files
Haskell
33
star
48

categories

categories from category-extras
Haskell
33
star
49

transients

Clojure-style transients for Haskell
Haskell
32
star
50

concurrent

Yet another concurrent playground
Haskell
32
star
51

abelian

Commutative Applicatives and Semigroups
Haskell
31
star
52

hkd

higher-kinded data
Haskell
30
star
53

speculation

Safe, programmable, speculative evaluation for Haskell
Haskell
29
star
54

rts

spmd-on-simd stuff
C++
28
star
55

placeholder

todo and unimplemented, robustly implemented
Haskell
28
star
56

promises

lazy promises
Haskell
27
star
57

intervals

Interval Arithmetic
Haskell
27
star
58

heaps

Asymptotically optimal Brodal/Okasaki heaps
Haskell
26
star
59

intern

Hash consing for arbitrary Haskell data types
Haskell
25
star
60

hyperloglog

A constant-memory approximation of set membership
Haskell
24
star
61

magpie

an exploration of subtyping-based category theory in scala
Scala
24
star
62

lca

Improves the known complexity of online lowest common ancestor search to O(log h) persistently, and without preprocessing
Haskell
24
star
63

sparse

sparse matrices in Morton order
Haskell
23
star
64

indexed

Indexed Functors for GHC 7.6
Haskell
22
star
65

streams

Haskell 2010 stream comonads
Haskell
22
star
66

keys

keyed functors
Haskell
22
star
67

bytes

Serialization primitives that work with both cereal and binary.
Haskell
22
star
68

pointed

pointed and copointed data
Haskell
21
star
69

scala-ad

Forward- and Reverse-Mode Automatic Differentiation for Scala
Scala
21
star
70

vr

nothing to see here
C++
20
star
71

name

nominal sets in haskell
Haskell
20
star
72

rope

Fingertrees of Bytestrings
Haskell
19
star
73

jitplusplus

a tracing jit for c++ based on tracing and compiling from x86-64 assembly to x86-64 assembly
C
19
star
74

void

Provides Data.Void, which is in base since ghc 7.8 or so
Haskell
19
star
75

scheme-monads

minimalist polymorphic scheme-(co)monads, written to avoid use of any advanced language features except hygienic macros
Scheme
18
star
76

fractions

lazy continued fractions
Haskell
18
star
77

parsnip

Haskell
18
star
78

folds

Folds and sequence algebras
Haskell
18
star
79

concurrent-supply

A fast globally unique variable supply with a pure API
Haskell
17
star
80

category-extras

category-theoretic goodness for Haskell
Haskell
17
star
81

thc

An experimental "Turbo" Haskell Runtime - Nothing really to see here yet
C++
17
star
82

lens-action

Control.Lens.Action
Haskell
17
star
83

bad

a playground for working with fully static tensors and automatic differentiation
C++
17
star
84

homotopy

Coq
17
star
85

rcu

experimenting with STM-backed read-copy-update in Haskell
Haskell
16
star
86

multicategories

Playing around with multicategories and operads
Haskell
16
star
87

gc

Poor Richard's Memory Manager
Haskell
15
star
88

scala-attoparsec

A port of Bryan O'Sullivan's attoparsec from Haskell to Scala
Scala
15
star
89

kanso

just a place to throw some coding experiements while i re-re-re-learn rust
Rust
15
star
90

hyperfunctions

playing with hyperfunctions
Haskell
15
star
91

succinct-binary

Succinct binary serialization
Haskell
15
star
92

half

half-precision floating-point
Haskell
14
star
93

time-series

Playing with time series
Haskell
14
star
94

codebruijn

experiments with pext/pdep and codebruijn syntax
Haskell
14
star
95

haskell

An unimaginatively named monorepo for misc. side-projects that are annoying to maintain separately.
Haskell
14
star
96

keep

playing with resumable computations
Haskell
13
star
97

compensated

Compensated floating-point arithmetic
Haskell
13
star
98

eq

Leibnizian type equality
Haskell
13
star
99

nbe-in-java-19

a throwaway implementation of normalization by evaluation
Java
13
star
100

bits

Bit twiddling and bitwise serialization primitives
Haskell
13
star