WaveCert: Translation Validation for Asynchronous Dataflow Programs via Dynamic Fractional Permissions
Zhengyao Lin, Joshua Gancher, Bryan Parno
TL;DR
This work tackles correctness of translating imperative programs to asynchronous dataflow graphs on CGRAs, where schedule nondeterminism can alter behavior. It introduces WaveCert, a two-phase translation validation framework that first proves equivalence on a canonical dataflow schedule via cut-simulation, then establishes confluence using dynamic linear permission tokens to ensure all schedules converge to the canonical one. The approach is implemented for the RipTide compiler, uncovering 8 compiler bugs (including a data-race issue) and verifying the RipTide benchmark suite. The method yields strong correctness and liveness guarantees, while remaining practical by relying on unverified toolchains and SMT-based reasoning, and it points to future enhancements for optimized dataflow graphs and hardware-specific verification.
Abstract
Coarse-grained reconfigurable arrays (CGRAs) have gained attention in recent years due to their promising power efficiency compared to traditional von Neumann architectures. To program these architectures using ordinary languages such as C, a dataflow compiler must transform the original sequential, imperative program into an equivalent dataflow graph, composed of dataflow operators running in parallel. This transformation is challenging since the asynchronous nature of dataflow graphs allows out-of-order execution of operators, leading to behaviors not present in the original imperative programs. We address this challenge by developing a translation validation technique for dataflow compilers to ensure that the dataflow program has the same behavior as the original imperative program on all possible inputs and schedules of execution. We apply this method to a state-of-the-art dataflow compiler targeting the RipTide CGRA architecture. Our tool uncovers 8 compiler bugs where the compiler outputs incorrect dataflow graphs, including a data race that is otherwise hard to discover via testing. After repairing these bugs, our tool verifies the correct compilation of all programs in the RipTide benchmark suite.
