[1] |
Joel Kuepper, Andres Erbsen, Jason Gross, Owen Conoly, Chuyue Sun, Samuel Tian,
David Wu, Adam Chlipala, Chitchanok Chuengsatiansup, Daniel Genkin, Markus
Wagner, and Yuval Yarom.
CryptOpt: Verified compilation with random program search for
cryptographic primitives.
In PLDI'23: Proceedings of the
44th ACM SIGPLAN Conference on Programming
Language Design and Implementation, June 2023.
Distinguished Paper Award.
[ bib |
http ]
Most software domains rely on compilers to translate high-level code to multiple different machine languages, with performance not too much worse than what developers would have the patience to write directly in assembly language. However, cryptography has been an exception, where many performance-critical routines have been written directly in assembly (sometimes through metaprogramming layers). Some past work has shown how to do formal verification of that assembly, and other work has shown how to generate C code automatically along with formal proof, but with consequent performance penalties vs. the best-known assembly. We present Cryptopt, the first compilation pipeline that specializes high-level cryptographic functional programs into assembly code significantly faster than what GCC or Clang produce, with mechanized proof (in Coq) whose final theorem statement mentions little beyond the input functional program and the operational semantics of x86-64 assembly. On the optimization side, we apply randomized search through the space of assembly programs, with repeated automatic benchmarking on target CPUs. On the formal-verification side, we connect to the Fiat Cryptography framework (which translates functional programs into C-like IR code) and extend it with a new formally verified program-equivalence checker, incorporating a modest subset of known features of SMT solvers and symbolic-execution engines. The overall prototype is quite practical, e.g. producing new fastest-known implementations for the relatively new Intel i9 12G, of finite-field arithmetic for both Curve25519 (part of the TLS standard) and the Bitcoin elliptic curve secp256k1. |
[2] |
Jason Gross, Andres Erbsen, Jade Philipoom, Rajashree Agrawal, and Adam
Chlipala.
Towards a scalable proof engine: A performant prototype rewriting
primitive for Coq.
Selected Extended Papers of ITP 2022 in the Journal of Automated
Reasoning, 2023.
[ bib |
arXiv ]
We address the challenges of scaling verification efforts to match the increasing complexity and size of systems. We propose a research agenda aimed at building a performant proof engine by studying the asymptotic performance of proof engines and redesigning their building blocks. As a case study, we explore equational rewriting and introduce a novel prototype proof engine building block for rewriting in Coq, utilizing proof by reflection for enhanced performance. |
[3] |
Jason Gross and Andres Erbsen.
10 years of superlinear slowness in Coq, August 2022.
Presented at The Coq
Workshop 2022.
[ bib |
presentation (.pdf) |
presentation (YouTube) |
presentation (.pptx) |
presentation (.pptx, annotated with notes) |
.pdf ]
In most programming languages, asymptotic performance issues can almost always be explained by reference to the algorithm being implemented. At most, the standard asymptotic performance of explicitly used operations on chosen data structures must be considered. Even the constant factors in performance bottlenecks can often be explained without reference to the implementation of the interpreter, compiler, nor underlying machine. |
[4] |
Jason Gross, Théo Zimmermann, Miraya Poddar-Agrawal, and Adam Chlipala.
Automatic test-case reduction in proof assistants: A case study in
Coq.
In June Andronick and Leonardo de Moura, editors, Proceedings of
the 13th International
Conference on Interactive Theorem Proving (ITP 2022), volume 237 of
Leibniz International Proceedings in Informatics (LIPIcs), pages
18:1--18:18, Dagstuhl, Germany, August 2022. Schloss Dagstuhl --
Leibniz-Zentrum für Informatik.
[ bib |
DOI |
publication (![]() ![]() As the adoption of proof assistants increases, there is a need for efficiency in identifying, documenting, and fixing compatibility issues that arise from proof-assistant evolution. We present the Coq Bug Minimizer, a tool for reproducing buggy behavior with minimal and standalone files, integrated with coqbot to trigger automatically on failures from Coq's reverse dependency compatibility testing. Our tool eliminates the overhead of having to download, set up, compile, and then explore and understand large developments, enabling Coq developers to easily obtain modular test-case files for fast experimentation. In this paper, we describe insights about how test-case reduction is different in Coq than in traditional compilers. We expect that our insights will generalize to other proof assistants. We evaluate the Coq Bug Minimizer on over 150 compatibility testing failures. Our tool succeeds in reducing failures to smaller test cases roughly 75% of the time. The minimizer produces a fully standalone test case 89% of the time, and it is on average about one-third the size of the original test. The average reduced test case compiles in 1.25 seconds, with 75% taking under half a second. |
[5] |
Jason Gross, Andres Erbsen, Jade Philipoom, Miraya Poddar-Agrawal, and Adam
Chlipala.
Accelerating verified-compiler development with a verified rewriting
engine.
In June Andronick and Leonardo de Moura, editors, Proceedings of
the 13th International
Conference on Interactive Theorem Proving (ITP 2022), volume 237 of
Leibniz International Proceedings in Informatics (LIPIcs), pages
17:1--17:18, Dagstuhl, Germany, August 2022. Schloss Dagstuhl --
Leibniz-Zentrum für Informatik.
[ bib |
DOI |
arXiv |
publication (![]() ![]() Compilers are a prime target for formal verification, since compiler bugs invalidate higher-level correctness guarantees, but compiler changes may become more labor-intensive to implement, if they must come with proof patches. One appealing approach is to present compilers as sets of algebraic rewrite rules, which a generic engine can apply efficiently. Now each rewrite rule can be proved separately, with no need to revisit past proofs for other parts of the compiler. We present the first realization of this idea, in the form of a framework for the Coq proof assistant. Our new Coq command takes normal proved theorems and combines them automatically into fast compilers with proofs. We applied our framework to improve the Fiat Cryptography toolchain for generating cryptographic arithmetic, producing an extracted command-line compiler that is about 1000× faster while actually featuring simpler compiler-specific proofs. |
[6] |
Jason S. Gross.
Performance Engineering of Proof-Based Software Systems at
Scale.
PhD thesis, Massachusetts Institute of Technology, February 2021.
[ bib |
DSpace@MIT |
presentation (.pdf) |
presentation (YouTube) |
presentation (.pptx) |
.pdf ]
Formal verification is increasingly valuable as our world comes to rely more on software for critical infrastructure. A significant and understudied cost of developing mechanized proofs, especially at scale, is the computer performance of proof generation. This dissertation aims to be a partial guide to identifying and resolving performance bottlenecks in dependently typed tactic-driven proof assistants like Coq. |
[7] |
Jason Gross.
A limited case for reification by type inference, January 2021.
Presented at The
Seventh International Workshop on Coq for Programming Languages (CoqPL'21).
[ bib |
presentation (YouTube) |
code (.v) |
.pdf ]
Proof by reflection is a common and well-studied automation tool. Reification---generally written using Ltac, OCaml, typeclasses, or canonical structures---is the means by which a structured representation is derived from an unstructured representation. The reflective automation then operates on the structured representation, relying on an interpretation or denotation function to justify a correspondence between the structured and unstructured representations. |
[8] |
Linden B. Huhmann, Charles F. Harvey, Jason Gross, Anjal Uddin, Imtiaz
Choudhury, Kazi M. Ahmed, John M. Duxbury, Benjamin Bostick, and Alexander
van Geen.
Evaluation of a field kit for testing arsenic in paddy soil
contaminated by irrigation water.
Geoderma, 382:114755, January 2021.
[ bib |
DOI |
publication (Rice is the primary crop in Bangladesh and rice yield is diminished due to the buildup of arsenic (As) in soil from irrigation with high-As groundwater. Soil testing with an inexpensive kit could help farmers target high-As soil for mitigation or decide to switch to a different crop that is less sensitive to As in soil. A total of 3240 field kit measurements of As in 0.5 g of fresh soil added to 50 mL of water were compared with total soil As concentrations measured on oven-dried homogenized soil by X-ray fluorescence (XRF). For sets of 12 soil samples collected within a series of rice fields, the average of kit As measurements was a linear function of the average of XRF measurements (r2 = 0.69). Taking into account that the kit overestimates water As concentrations by about a factor of two, the relationship suggests that about a quarter of the As in paddy soil is released in the kit’s reaction vessel. Using the relationship and considering XRF measurements as the reference, the 12-sample average determined correctly whether soil As was above or below a 30 mg/kg threshold in 86% of cases where soil As was above the threshold and in 79% of cases where soil As was below the threshold. We also used a Bayesian approach using 12 kit measurements to estimate the probability that soil As was above a given threshold indicated by XRF measurements. The Bayesian approach is theoretically optimal but was only slightly more accurate than the linear regression. These results show that rice farmers can identify high-As portions of their fields for mitigation using a dozen field kit measurements on fresh soil and base their decisions on this information. Keywords: Field kit, Rice paddy, Irrigation, Arsenic |
[9] |
Clément Pit-Claudel, Peng Wang, Benjamin Delaware, Jason Gross, and Adam
Chlipala.
Extensible extraction of efficient imperative programs with foreign
functions, manually managed memory, and proofs.
In Nicolas Peltier and Viorica Sofronie-Stokkermans, editors,
Proceedings of the 9th International Joint
Conference on Automated Reasoning (IJCAR'20), pages 119--137, Cham, June
2020. Springer International Publishing.
[ bib |
DOI |
publication ( |
)project (![]() We present an original approach to sound program extraction in a proof assistant, using syntax-driven automation to derive correct-by-construction imperative programs from nondeterministic functional source code. Our approach does not require committing to a single inflexible compilation strategy and instead makes it straightforward to create domain-specific code translators. In addition to a small set of core definitions, our framework is a large, user-extensible collection of compilation rules each phrased to handle specific language constructs, code patterns, or data manipulations. By mixing and matching these pieces of logic, users can easily tailor extraction to their own domains and programs, getting maximum performance and ensuring correctness of the resulting assembly code. |
[10] |
Andres Erbsen, Jade Philipoom, Jason Gross, Robert Sloan, and Adam Chlipala.
Simple high-level code for cryptographic arithmetic -- with proofs,
without compromises.
In Proceedings of the
40th IEEE Symposium on
Security and Privacy (S&P'19), May 2019.
[ bib |
DOI |
![]() ![]() We introduce a new approach for implementing cryptographic arithmetic in short high-level code with machine-checked proofs of functional correctness. We further demonstrate that simple partial evaluation is sufficient to transform into the fastest-known C code, breaking the decades-old pattern that the only fast implementations are those whose instruction-level steps were written out by hand. |
[11] |
Jason Gross, Andres Erbsen, and Adam Chlipala.
Reification by parametricity: Fast setup for proof by reflection, in
two lines of Ltac.
In Jeremy Avigad and Assia Mahboubi, editors, Proceedings of the
9th International Conference on Interactive
Theorem Proving (ITP'18), pages 289--305, Cham, July 2018. Springer
International Publishing.
[ bib |
DOI |
publication ( |
)presentation (.pdf) |
presentation (.pptx, annotated with notes) |
original conference submission (.pdf) |
artifact (![]() We present a new strategy for performing reification in Coq. That is, we show how to generate first-class abstract syntax trees from “native” terms of Coq's logic, suitable as inputs to verified compilers or procedures in the proof-by-reflection style. Our new strategy, based on simple generalization of subterms as variables, is straightforward, short, and fast. In its pure form, it is only complete for constants and function applications, but “let” binders, eliminators, lambdas, and quantifiers can be accommodated through lightweight coding conventions or preprocessing. |
[12] |
Jason Gross.
Presentation proposal for teaching your rooster to crow in C, July
2018.
Presented at The Coq
Workshop 2018.
[ bib |
code (.html) |
code (.v) |
.pdf ]
Coq's notation system is both extremely powerful and confusingly ad-hoc. While powerful enough to pretty-print abstract syntax trees in most domain-specific languages, how to do so does not seem to be common knowledge. Typical questions arising from such an endeavor might include “How do I pick notation levels?”, “Why are these notations clashing?”, “Which things should be marked as symbols?”, “How do I use boxes in format?”, and “How do I get parentheses to show up (only) where I want them to?” This interactive presentation aims to serve as a guide to these questions and more, by demonstrating and explaining how to pretty-print subsets of C using only Coq's Notation mechanism. |
[13] |
Adam Chlipala, Benjamin Delaware, Samuel Duchovni, Jason Gross, Clément
Pit-Claudel, Sorawit Suriyakarn, Peng Wang, and Katherine Ye.
The end of history? using a proof assistant to replace language
design with library design.
In Benjamin S. Lerner, Rastislav Bodík, and Shriram
Krishnamurthi, editors, Proceedings of the
The 2nd Summit oN Advances in Programming
Languages (SNAPL'17), volume 71 of Leibniz International Proceedings
in Informatics (LIPIcs), pages 3:1--3:15, Dagstuhl, Germany, May 2017.
Schloss Dagstuhl--Leibniz-Zentrum fuer Informatik.
[ bib |
DOI |
project homepage |
presentation (.odp) |
presentation (.pdf) |
.pdf ]
Functionality of software systems has exploded in part because of advances in programming-language support for packaging reusable functionality as libraries. Developers benefit from the uniformity that comes of exposing many interfaces in the same language, as opposed to stringing together hodgepodges of command-line tools. Domain-specific languages may be viewed as an evolution of the power of reusable interfaces, when those interfaces become so flexible as to deserve to be called programming languages. However, common approaches to domain-specific languages give up many of the hard-won advantages of library-building in a rich common language, and even the traditional approach poses significant challenges in learning new APIs. We suggest that instead of continuing to develop new domain-specific languages, our community should embrace library-based ecosystems within very expressive languages that mix programming and theorem proving. Our prototype framework Fiat, a library for the Coq proof assistant, turns languages into easily comprehensible libraries via the key idea of modularizing functionality and performance away from each other, the former via macros that desugar into higher-order logic and the latter via optimization scripts that derive efficient code from logical programs. Keywords: domain-specific languages, synthesis, verification, proof assistants, software development |
[14] |
Andrej Bauer, Jason Gross, Peter LeFanu Lumsdaine, Michael Shulman, Matthieu
Sozeau, and Bas Spitters.
The HoTT library: A formalization of homotopy type theory in Coq.
In Proceedings of the 6th ACM
SIGPLAN Conference on Certified Programs and Proofs, CPP 2017, pages
164--172, New York, NY, USA, January 2017. ACM.
[ bib |
DOI |
arXiv |
![]() We report on the development of the HoTT library, a formalization of homotopy type theory in the Coq proof assistant. It formalizes most of basic homotopy type theory, including univalence, higher inductive types, and significant amounts of synthetic homotopy theory, as well as category theory and modalities. The library has been used as a basis for several independent developments. We discuss the decisions that led to the design of the library, and we comment on the interaction of homotopy type theory with recently introduced features of Coq, such as universe polymorphism and private inductive types. Keywords: Coq, Higher inductive types, Homotopy type theory, Univalent foundations, Universe polymorphism |
[15] |
Jason Gross.
The HoTT/HoTT library in Coq: Designing for speed, July 2016.
Presented at The 5th International
Congress on Mathematical Software (ICMS 2016).
[ bib |
presentation (.pptx, annotated with notes) |
.pdf ]
The HoTT/HoTT library is one of the major Coq libraries exploring univalent foundations and homotopy type theory, the other being UniMath. The library includes formalization of the basic type formers, some axiomatic higher inductive types including the circle, the interval, suspensions, and quotients, a formalization of modalities (reflective subtoposes) using modules as a way to quantify over all universe levels, formalizations of Cantor spaces and the surreals, the basic theory of h-levels, and a significant amount of category theory centered around comma categories and functoriality of various constructions involving comma categories. A significant amount of work has gone into ensuring that the library compiles quickly. This talk will discuss the various constructions in the HoTT library, as well as the design choices and features, both of Coq and of univalent type theory, which allow our library to compile and typecheck quickly. |
[16] |
Jason Gross.
An extensible framework for synthesizing efficient, verified parsers.
Master's thesis, Massachusetts Institute of Technology, September
2015.
[ bib |
DSpace@MIT |
.pdf ]
Parsers have a long history in computer science. This thesis proposes a novel approach to synthesizing efficient, verified parsers by refinement, and presents a demonstration of this approach in the Fiat framework by synthesizing a parser for arithmetic expressions. The benefits of this framework may include more flexibility in the parsers that can be described, more control over the low-level details when necessary for performance, and automatic or mostly automatic correctness proofs. |
[17] |
Tobias Tebbi and Jason Gross.
A profiler for Ltac, January 2015.
Presented at The
First International Workshop on Coq for PL (CoqPL'15).
[ bib |
.pdf ]
We present a simple profiler for the Ltac tactic language of the Coq Proof Assistent. It measures the time spent in invocations of primitive tactics as well as tactics defined in Ltac and their inner invocations. The profiler is controlled using Vernacular commands and prints an aggregated view that differentiates between tactic invocations depending on their call tree location. |
[18] |
Jason Gross.
Coq bug minimizer, January 2015.
Presented at The
First International Workshop on Coq for PL (CoqPL'15).
[ bib |
reviews |
.pdf ]
Are bugs the bane of your existence? Do you dread Coq upgrades, because they mean you'll have to spend days tracking down subtle failures deep in your developments? Have you ever hit an anomaly that just wouldn't go away, and wished you understood what triggered it? Have you ever been tormented by two blocks of code that looked identical, but behaved differently? Do you wish you submit more helpful error reports, but don't want to put in the time to construct minimal examples? If you answered “yes” to any of these questions, then the Coq Bug Minimizer is for you! Clone your own copy at https://github.com/JasonGross/coq-bug-finder. |
[19] |
Ben Delaware, Clément Pit-Claudel, Jason Gross, and Adam Chlipala.
Fiat: Deductive synthesis of abstract data types in a proof
assistant.
In Proceedings of the 42nd
ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages
(POPL'15), January 2015.
[ bib |
DOI |
![]() We present Fiat, a library for the Coq proof assistant supporting refinement of declarative specifications into efficient functional programs with a high degree of automation. Each refinement process leaves a proof trail, checkable by the normal Coq kernel, justifying its soundness. We focus on the synthesis of abstract data types that package methods with private data. We demonstrate the utility of our framework by applying it to the synthesis of query structures -- abstract data types with SQL-like query and insert operations. Fiat includes a library for writing specifications of query structures in SQL-inspired notation, expressing operations over relations (tables) in terms of mathematical sets. This library includes a set of tactics for automating the refinement of these specifications into efficient, correct-by-construction OCaml code. Using these tactics, a programmer can generate such an implementation completely automatically by only specifying the equivalent of SQL indexes, data structures capturing useful views of the abstract data. We conclude by speculating on the new programming modularity possibilities enabled by an automated refinement system with proved-correct rules. |
[20] |
Jason Gross.
Presentation: Input, output, and automation in x86 proved, August
2014.
Presented at Microsoft Research, Cambridge, UK.
[ bib |
.pptx |
.pdf ]
The x86proved project can now verify assembly programs with input and output! The code-reasoning throughout the project is now mostly automatic. Although not yet push-button verification (specification-level reasoning, in particular, leaves a lot to be desired) these tactics make a significant step towards that goal. This presentation will cover: |
[21] |
Jason Gross, Adam Chlipala, and David I. Spivak.
Experience implementing a performant category-theory library in
Coq.
In Gerwin Klein and Ruben Gamboa, editors, Proceedings of the
5th International Conference on
Interactive Theorem Proving (ITP'14), pages 275--291, Cham, July 2014.
Springer International Publishing.
[ bib |
DOI |
arXiv |
publication ( |
)presentation (.pdf) |
presentation (.pptx, annotated with notes) |
original conference submission (.pdf) |
full bibliography |
reviews |
.pdf ]
We describe our experience implementing a broad category-theory library in Coq. Category theory and computational performance are not usually mentioned in the same breath, but we have needed substantial engineering effort to teach Coq to cope with large categorical constructions without slowing proof script processing unacceptably. In this paper, we share the lessons we have learned about how to represent very abstract mathematical objects and arguments in Coq and how future proof assistants might be designed to better support such reasoning. One particular encoding trick to which we draw attention allows category-theoretic arguments involving duality to be internalized in Coq's logic with definitional equality. Ours may be the largest Coq development to date that uses the relatively new Coq version developed by homotopy type theorists, and we reflect on which new features were especially helpful. |
[22] |
Jason Gross.
Presentation proposal for three neat tricks in Coq 8.5, April 2014.
Presented at the
6th Coq
Workshop.
[ bib |
code (.html) |
code (.v) |
reviews |
.pdf ]
Coq 8.5 has a number of new features. It has more powerful universe polymorphism support. It allows tactics to be run at interpretation to construct other terms. The ability to switch from Gallina to Ltac in arbitrary locations nicely complements the constr: notation permitting the switch from Ltac to Gallina in tactics, and opens up many new possibilities. I propose to present three tricks involving these new features: tactics in terms allows the construction of tactics that recurse under binders; tactics in terms together with typeclasses allows overloading notations based on the type of their arguments; and there is a way to talk about universe levels explicitly, helped along by tactics in terms. |
[23] | Jason Gross. POPL: Minute madness: Category theory in Coq, and program synthesis, January 2014. Presented at the 41st ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages (POPL'14). [ bib | .pdf ] |
[24] | Jason Gross. Jason Gross' wishlist for Coq, January 2014. [ bib | .pdf ] |
[25] | Jason Gross. CSAIL student workshop 2013: Computational higher inductive types: Computing with custom equalities, October 2013. Presented at the 2014 MIT CSAIL Student Workshop. [ bib | .pdf ] |
[26] | Jason Gross. POPL: Minute madness: Database management on top of category theory in Coq: Category of relational schemas = category of categories, January 2013. Presented at the 40th ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages (POPL'13). [ bib | .pdf ] |
[27] | Jason Gross. Building database management on top of category theory in Coq, January 2013. Presented as a student talk at the 40th ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages (POPL'13). [ bib | .pdf ] |
[28] |
Brenden M. Lake, Ruslan Salakhutdinov, Jason Gross, and Joshua B. Tenenbaum.
One shot learning of simple visual concepts.
In Proceedings of the
33rd
Annual Conference of the Cognitive Science Society, 2011.
[ bib |
project homepage |
videos |
.pdf ]
People can learn visual concepts from just one example, but it remains a mystery how this is accomplished. Many authors have proposed that transferred knowledge from more familiar concepts is a route to one shot learning, but what is the form of this abstract knowledge? One hypothesis is that the sharing of parts is core to one shot learning, and we evaluate this idea in the domain of handwritten characters, using a massive new dataset. These simple visual concepts have a rich internal part structure, yet they are particularly tractable for computational models. We introduce a generative model of how characters are composed from strokes, where knowledge from previous characters helps to infer the latent strokes in novel characters. The stroke model outperforms a competing state-of-the-art character model on a challenging one shot learning task, and it provides a good fit to human perceptual data. |
This file was generated by bibtex2html 1.99.