Powered by
8th ACM SIGPLAN Haskell Symposium 2015,
September 3-4, 2015,
Vancouver, BC, Canada
Frontmatter
Foreword
Welcome to the 2015 ACM Haskell Symposium. This is the eighth Haskell Symposium, and the third year where the Symposium is organized as a two day event. This year the program committee introduced an early track to the submissions process, so that some papers could gain early feedback. We had 11 papers submitted to the early track, of which we accepted two outright and invited authors of the others to incorporate the reviewer’s feedback and resubmit improved versions. Most of these early track papers were resubmitted to the regular track, along with 25 new papers, for 36 submissions in total (not including demo submissions). Resubmitted early track papers were sent back to the same reviewers. All papers received at least three reviews. After a week long online meeting, we accepted 18 papers in total. On behalf of the Program Committee, I would like to thank all the authors for submitting their papers to the Haskell Symposium. Thanks also to the Program Committee members and external reviewers for their hard work and vigorous discussion. Thanks also to the Haskell Symposium Steering Committee, as well as the ICFP organizers including workshop co-chairs Tom Schrijvers and Nicolas Wu for their support.
Type Checking
Improving Haskell Types with SMT
Iavor S. Diatchki
(Galois, USA)
We present a technique for integrating GHC's type-checker with an SMT solver.
The technique was developed to add support for reasoning
about type-level functions on natural numbers, and so our implementation
uses the theory of linear arithmetic. However, the approach is not
limited to this theory, and makes it possible to experiment with other
external decision procedures, such as reasoning about type-level booleans,
bit-vectors, or any other theory supported by SMT solvers.
@InProceedings{Haskell15p1,
author = {Iavor S. Diatchki},
title = {Improving Haskell Types with SMT},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {1--10},
doi = {},
year = {2015},
}
A Typechecker Plugin for Units of Measure: Domain-Specific Constraint Solving in GHC Haskell
Adam Gundry
(Well-Typed, UK)
Typed functional programming and units of measure are a natural combination, as F# ably demonstrates. However, encoding statically-checked units in Haskell’s type system leads to inevitable disappointment with the usability of the resulting system. Extending the language itself would produce a much better result, but it would be a lot of work! In this paper, I demonstrate how typechecker plugins in the Glasgow Haskell Compiler allow users to define domain-specific constraint solving behaviour, making it possible to implement units of measure as a type system extension without rebuilding the compiler. This paves the way for a more modular treatment of constraint solving in GHC.
@InProceedings{Haskell15p11,
author = {Adam Gundry},
title = {A Typechecker Plugin for Units of Measure: Domain-Specific Constraint Solving in GHC Haskell},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {11--22},
doi = {},
year = {2015},
}
Info
Verification
Reasoning with the HERMIT: Tool Support for Equational Reasoning on GHC Core Programs
Andrew Farmer,
Neil Sculthorpe, and
Andy Gill
(University of Kansas, USA; Swansea University, UK)
A benefit of pure functional programming is that it encourages equational reasoning. However, the Haskell language has lacked direct tool support for such reasoning. Consequently, reasoning about Haskell programs is either performed manually, or in another language that does provide tool support (e.g. Agda or Coq). HERMIT is a Haskell-specific toolkit designed to support equational reasoning and user-guided program transformation, and to do so as part of the GHC compilation pipeline. This paper describes HERMIT's recently developed support for equational reasoning, and presents two case studies of HERMIT usage: checking that type-class laws hold for specific instance declarations, and mechanising textbook equational reasoning.
@InProceedings{Haskell15p23,
author = {Andrew Farmer and Neil Sculthorpe and Andy Gill},
title = {Reasoning with the HERMIT: Tool Support for Equational Reasoning on GHC Core Programs},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {23--34},
doi = {},
year = {2015},
}
Info
Formally Proving a Compiler Transformation Safe
Joachim Breitner
(KIT, Germany)
We prove that the Call Arity analysis and transformation, as implemented in the Haskell compiler GHC, is safe, i.e. does not impede the performance of the program. We formalized syntax, semantics, the analysis and the transformation in the interactive theorem prover Isabelle to obtain a machine-checked proof and hence a level of rigor rarely obtained for compiler optimization safety theorems. The proof is modular and introduces trace trees as a suitable abstraction in abstract cardinality analyses. We discuss the breadth of the formalization gap.
@InProceedings{Haskell15p35,
author = {Joachim Breitner},
title = {Formally Proving a Compiler Transformation Safe},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {35--46},
doi = {},
year = {2015},
}
Graphics and Distribution
Bridging the GUI Gap with Reactive Values and Relations
Ivan Perez and
Henrik Nilsson
(University of Nottingham, UK)
There are at present two ways to write GUIs for functional code.
One is to use standard GUI toolkits, with all the benefits they bring
in terms of feature completeness, choice of platform, conformance
to platform-specific look-and-feel, long-term viability, etc. How-
ever, such GUI APIs mandate an imperative programming style for
the GUI and related parts of the application. Alternatively, we can
use a functional GUI toolkit. The GUI can then be written in a func-
tional style, but at the cost of foregoing many advantages of stan-
dard toolkits that often will be of critical importance. This paper
introduces a light-weight framework structured around the notions
of reactive values and reactive relations. It allows standard toolk-
its to be used from functional code written in a functional style.
We thus bridge the gap between the two worlds, bringing the ad-
vantages of both to the developer. Our framework is available on
Hackage and has been been validated through the development of
non-trivial applications in a commercial context, and with different
standard GUI toolkits.
@InProceedings{Haskell15p47,
author = {Ivan Perez and Henrik Nilsson},
title = {Bridging the GUI Gap with Reactive Values and Relations},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {47--58},
doi = {},
year = {2015},
}
The Remote Monad Design Pattern
Andy Gill,
Neil Sculthorpe, and
James Stanton
(University of Kansas, USA; Swansea University, UK)
Remote Procedure Calls are expensive. This paper demonstrates how to reduce the cost of calling remote procedures from Haskell by using the remote monad design pattern, which amortizes the cost of remote calls. This gives the Haskell community access to remote capabilities that are not directly supported, at a surprisingly inexpensive cost.
We explore the remote monad design pattern through six models of remote execution patterns, using a simulated Internet of Things toaster as a running example. We consider the expressiveness and optimizations enabled by each remote execution model, and assess the feasibility of our approach. We then present a full-scale case study: a Haskell library that provides a Foreign Function Interface to the JavaScript Canvas API. Finally, we discuss existing instances of the remote monad design pattern found in Haskell libraries.
@InProceedings{Haskell15p59,
author = {Andy Gill and Neil Sculthorpe and James Stanton},
title = {The Remote Monad Design Pattern},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {59--70},
doi = {},
year = {2015},
}
Generics
Variations on Variants
J. Garrett Morris
(University of Edinburgh, UK)
Extensible variants improve the modularity and expressiveness of programming languages: they allow program functionality to be decomposed into independent blocks, and allow seamless extension of existing code with both new cases of existing data types and new operations over those data types. This paper considers three approaches to providing extensible variants in Haskell. Row typing is a long understood mechanism for typing extensible records and variants, but its adoption would require extension of Haskell's core type system. Alternatively, we might hope to encode extensible variants in terms of existing mechanisms, such as type classes. We describe an encoding of extensible variants using instance chains, a proposed extension of the class system. Unlike many previous encodings of extensible variants, ours does not require the definition of a new type class for each function that consumes variants. Finally, we translate our encoding to use closed type families, an existing feature of GHC. Doing so demonstrates the interpretation of instances chains and functional dependencies in closed type families. One concern with encodings like ours is how completely they match the encoded system. We compare the expressiveness of our encodings with each other and with systems based on row types. We find that, while equivalent terms are typable in each system, both encodings require explicit type annotations to resolve ambiguities in typing not present in row type systems, and the type family implementation retains more constraints in principal types than does the instance chain implementation. We propose a general mechanism to guide the instantiation of ambiguous type variables, show that it eliminates the need for type annotations in our encodings, and discuss conditions under which it preserves coherence.
@InProceedings{Haskell15p71,
author = {J. Garrett Morris},
title = {Variations on Variants},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {71--81},
doi = {},
year = {2015},
}
Modular Reifiable Matching: A List-of-Functors Approach to Two-Level Types
Bruno C. d. S. Oliveira,
Shin-Cheng Mu, and
Shu-Hung You
(University of Hong Kong, China; Academia Sinica, Taiwan; National Taiwan University, Taiwan)
This paper presents Modular Reifiable Matching (MRM): a new approach to two level types using a fixpoint of list-of-functors representation. MRM allows the modular definition of datatypes and functions by pattern matching, using a style similar to the widely popular Datatypes a la Carte (DTC) approach. However, unlike DTC, MRM uses a fixpoint of list-of-functors approach to two-level types. This approach has advantages that help with various aspects of extensibility, modularity and reuse. Firstly, modular pattern matching definitions are collected using a list of matches that is fully reifiable. This allows for extensible pattern matching definitions to be easily reused/inherited, and particular matches to be overridden. Such flexibility is used, among other things, to implement extensible generic traversals. Secondly, the subtyping relation between lists of functors is quite simple, does not require backtracking, and is easy to model in languages like Haskell. MRM is implemented as a Haskell library, and its use and applicability are illustrated through various examples in the paper.
@InProceedings{Haskell15p82,
author = {Bruno C. d. S. Oliveira and Shin-Cheng Mu and Shu-Hung You},
title = {Modular Reifiable Matching: A List-of-Functors Approach to Two-Level Types},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {82--93},
doi = {},
year = {2015},
}
Monads and Comonads
Freer Monads, More Extensible Effects
Oleg Kiselyov and
Hiromi Ishii
(Tohoku University, Japan; University of Tsukuba, Japan)
We present a rational reconstruction of extensible effects, the recently proposed alternative to monad transformers, as the confluence of efforts to make effectful computations compose. Free monads and then extensible effects emerge from the straightforward term representation of an effectful computation, as more and more boilerplate is abstracted away. The generalization process further leads to freer monads, constructed without the Functor constraint. The continuation exposed in freer monads can then be represented as an efficient type-aligned data structure. The end result is the algorithmically efficient extensible effects library, which is not only more comprehensible but also faster than earlier implementations. As an illustration of the new library, we show three surprisingly simple applications: non-determinism with committed choice (LogicT), catching IO exceptions in the presence of other effects, and the semi-automatic management of file handles and other resources through monadic regions. We extensively use and promote the new sort of `laziness', which underlies the left Kan extension: instead of performing an operation, keep its operands and pretend it is done.
@InProceedings{Haskell15p94,
author = {Oleg Kiselyov and Hiromi Ishii},
title = {Freer Monads, More Extensible Effects},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {94--105},
doi = {},
year = {2015},
}
Info
Functional Pearl: Getting a Quick Fix on Comonads
Kenneth Foner
(University of Pennsylvania, USA)
A piece of functional programming folklore due to Piponi provides Löb's theorem from modal provability logic with a computational interpretation as an unusual fixed point. Interpreting modal necessity as an arbitrary Functor in Haskell, the "type" of Löb's theorem is inhabited by a fixed point function allowing each part of a structure to refer to the whole.
However, Functor's logical interpretation may be used to prove Löb's theorem only by relying on its implicit functorial strength, an axiom not available in the provability modality. As a result, the well known loeb fixed point "cheats" by using functorial strength to implement its recursion.
Rather than Functor, a closer Curry analogue to modal logic's Howard inspiration is a closed (semi-)comonad, of which Haskell's ComonadApply typeclass provides analogous structure. Its computational interpretation permits the definition of a novel fixed point function allowing each part of a structure to refer to its own context within the whole. This construction further guarantees maximal sharing and asymptotic efficiency superior to loeb for locally contextual computations upon a large class of structures. With the addition of a distributive law, closed comonads may be composed into spaces of arbitrary dimensionality while preserving the performance guarantees of this new fixed point.
From these elements, we construct a small embedded domain-specific language to elegantly express and evaluate multidimensional "spreadsheet-like" recurrences for a variety of cellular automata.
@InProceedings{Haskell15p106,
author = {Kenneth Foner},
title = {Functional Pearl: Getting a Quick Fix on Comonads},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {106--117},
doi = {},
year = {2015},
}
Info
Type Classes
Injective Type Families for Haskell
Jan Stolarek,
Simon Peyton Jones, and
Richard A. Eisenberg
(Politechnika Łódzka, Poland; Microsoft Research, UK; University of Pennsylvania, USA)
Haskell, as implemented by the Glasgow Haskell Compiler (GHC), allows expressive type-level programming. The most popular type-level programming extension is TypeFamilies, which allows users to write functions on types. Yet, using type functions can cripple type inference in certain situations. In particular, lack of injectivity in type functions means that GHC can never infer an instantiation of a type variable appearing only under type functions. In this paper, we describe a small modification to GHC that allows type functions to be annotated as injective. GHC naturally must check validity of the injectivity annotations. The algorithm to do so is surprisingly subtle. We prove soundness for a simplification of our algorithm, and state and prove a completeness property, though the algorithm is not fully complete. As much of our reasoning surrounds functions defined by a simple pattern-matching structure, we believe our results extend beyond just Haskell. We have implemented our solution on a branch of GHC and plan to make it available to regular users with the next stable release of the compiler.
@InProceedings{Haskell15p118,
author = {Jan Stolarek and Simon Peyton Jones and Richard A. Eisenberg},
title = {Injective Type Families for Haskell},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {118--128},
doi = {},
year = {2015},
}
Type Families with Class, Type Classes with Family
Alejandro Serrano,
Jurriaan Hage, and
Patrick Bahr
(Utrecht University, Netherlands; University of Copenhagen, Denmark)
Type classes and type families are key ingredients in Haskell programming. Type classes were introduced to deal with ad-hoc polymorphism, although with the introduction of functional dependencies, their use expanded to type-level programming. Type families also allow encoding type-level functions, but more directly in the form of rewrite rules. In this paper we show that type families are powerful enough to simulate type classes (without overlapping instances), and we provide a formal proof of the soundness and completeness of this simulation. Encoding instance constraints as type families eases the path to proposed extensions to type classes, like closed sets of instances, instance chains, and control over the search procedure. The only feature which type families cannot simulate is elaboration, that is, generating code from the derivation of a rewriting. We look at ways to solve this problem in current Haskell, and propose an extension to allow elaboration during the rewriting phase.
@InProceedings{Haskell15p129,
author = {Alejandro Serrano and Jurriaan Hage and Patrick Bahr},
title = {Type Families with Class, Type Classes with Family},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {129--140},
doi = {},
year = {2015},
}
Concurrency and Parallelism
Déjà Fu: A Concurrency Testing Library for Haskell
Michael Walker and
Colin Runciman
(University of York, UK)
Systematic concurrency testing (SCT) is an approach to testing potentially nondeterministic concurrent programs. SCT avoids potentially unrepeatable results that may arise from unit testing concurrent programs. It seems to have received little attention from Haskell programmers. This paper introduces a generalisation of Haskell's concurrency abstraction in the form of typeclasses, and a library for testing concurrent programs. A number of examples are provided, some of which come from pre-existing packages.
@InProceedings{Haskell15p141,
author = {Michael Walker and Colin Runciman},
title = {Déjà Fu: A Concurrency Testing Library for Haskell},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {141--152},
doi = {},
year = {2015},
}
Improving Implicit Parallelism
José Manuel Calderón Trilla and
Colin Runciman
(University of York, UK)
Using static analysis techniques compilers for lazy functional languages can be used to identify parts of a program that can be legitimately evaluated in parallel and ensure that those expressions are executed concurrently with the main thread of execution. These techniques can produce improvements in the runtime performance of a program, but are limited by the static analyses’ poor prediction of runtime performance. This paper outlines the development of a system that uses iterative profile-directed improvement in addition to well-studied static analysis techniques. This allows us to achieve higher performance gains than through static analysis alone.
@InProceedings{Haskell15p153,
author = {José Manuel Calderón Trilla and Colin Runciman},
title = {Improving Implicit Parallelism},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {153--164},
doi = {},
year = {2015},
}
Probabilistic and Linear Programming
Practical Probabilistic Programming with Monads
Adam Ścibior,
Zoubin Ghahramani, and
Andrew D. Gordon
(University of Cambridge, UK; Microsoft Research, UK; University of Edinburgh, UK)
The machine learning community has recently shown a lot of interest in practical probabilistic programming systems that target the problem of Bayesian inference. Such systems come in different forms, but they all express probabilistic models as computational processes using syntax resembling programming languages. In the functional programming community monads are known to offer a convenient and elegant abstraction for programming with probability distributions, but their use is often limited to very simple inference problems. We show that it is possible to use the monad abstraction to construct probabilistic models for machine learning, while still offering good performance of inference in challenging models. We use a GADT as an underlying representation of a probability distribution and apply Sequential Monte Carlo-based methods to achieve efficient inference. We define a formal semantics via measure theory. We demonstrate a clean and elegant implementation that achieves performance comparable with Anglican, a state-of-the-art probabilistic programming system.
@InProceedings{Haskell15p165,
author = {Adam Ścibior and Zoubin Ghahramani and Andrew D. Gordon},
title = {Practical Probabilistic Programming with Monads},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {165--176},
doi = {},
year = {2015},
}
Embedding a Full Linear Lambda Calculus in Haskell
Jeff Polakow
(Awake Networks, USA)
We present an encoding of full linear lambda calculus in Haskell using higher order abstract syntax. By making use of promoted data kinds, multi-parameter type classes and functional dependencies, the encoding allows Haskell to do both linear type checking and linear type inference.
@InProceedings{Haskell15p177,
author = {Jeff Polakow},
title = {Embedding a Full Linear Lambda Calculus in Haskell},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {177--188},
doi = {},
year = {2015},
}
Code Generation
Guilt Free Ivory
Trevor Elliott,
Lee Pike,
Simon Winwood,
Pat Hickey,
James Bielman,
Jamey Sharp,
Eric Seidel, and
John Launchbury
(Galois, USA; University of California at San Diego, USA; Willamette University, USA)
Ivory is a language that enforces memory safety and avoids most undefined behaviors while providing low-level control of memory- manipulation. Ivory is embedded in a modern variant of Haskell, as implemented by the GHC compiler. The main contributions of the paper are two-fold. First, we demonstrate how to embed the type-system of a safe-C language into the type extensions of GHC. Second, Ivory is of interest in its own right, as a powerful language for writing high-assurance embedded programs. Beyond invariants enforced by its type-system, Ivory has direct support for model-checking, theorem-proving, and property-based testing. Ivory’s semantics have been formalized and proved to guarantee memory safety.
@InProceedings{Haskell15p189,
author = {Trevor Elliott and Lee Pike and Simon Winwood and Pat Hickey and James Bielman and Jamey Sharp and Eric Seidel and John Launchbury},
title = {Guilt Free Ivory},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {189--200},
doi = {},
year = {2015},
}
Type-safe Runtime Code Generation: Accelerate to LLVM
Trevor L. McDonell,
Manuel M. T. Chakravarty,
Vinod Grover, and
Ryan R. Newton
(Indiana University, USA; UNSW, Australia; NVIDIA, USA)
Embedded languages are often compiled at application runtime; thus, embedded compile-time errors become application runtime errors. We argue that advanced type system features, such as GADTs and type families, play a crucial role in minimising such runtime errors. Specifically, a rigorous type discipline reduces runtime errors due to bugs in both embedded language applications and the implementation of the embedded language compiler itself. In this paper, we focus on the safety guarantees achieved by type preserving compilation. We discuss the compilation pipeline of Accelerate, a high-performance array language targeting both multicore CPUs and GPUs, where we are able to preserve types from the source language down to a low-level register language in SSA form. Specifically, we demonstrate the practicability of our approach by creating a new type-safe interface to the industrial-strength LLVM compiler infrastructure, which we used to build two new Accelerate backends that show competitive runtimes on a set of benchmarks across both CPUs and GPUs.
@InProceedings{Haskell15p201,
author = {Trevor L. McDonell and Manuel M. T. Chakravarty and Vinod Grover and Ryan R. Newton},
title = {Type-safe Runtime Code Generation: Accelerate to LLVM},
booktitle = {Proc.\ Haskell},
publisher = {ACM},
pages = {201--212},
doi = {},
year = {2015},
}
proc time: 0.84