Live data from Hacker News

Viewing profile — manasij7479

manasij7479

HN member
Joined
Tue, Dec 04, 2018, 9:21 PM UTC
HN karma
22
Public activity
5 items

About manasij7479

CS PhD student at the University of Utah, working on LLVM, formal methods, superoptimizers, and compiler development tools.

manasij7479@gmail.com

Recent public activity

  1. comment
    Comment #40112313

    These are indeed neat papers!

  2. comment
    Comment #36160660

    Neat, I wonder if this idea could be developed into a more refined programming experience where you you spend time in the imperative world by default and only express some iteratio…

  3. comment
    Comment #36156343

    The issue you have circled around here is a bit deeper and nuanced than trimming down exponential code to something more tractable. In fact, it's often worse, and O(2^n) can be a b…

  4. comment
    Comment #36119101

    Input's and other side effects are not too tricky to handle. In most cases, you just slice the program to isolate pure computation, and just optimize that. Most traditional compile…

  5. comment
    Comment #36118984

    The pruning part can do a lot of heavy lifting to make it a practical tool. Related: I work on Souper ( https://github.com/google/souper ). Feel free to reach out if anyone has que…