Giter Club home page Giter Club logo

Comments (5)

rachitnigam avatar rachitnigam commented on July 19, 2024 1

Yeah, that’s the thing I’m clarifying—the dahlia type checker will tell you when you need to put in —- by giving resource usage errors. Everything else is supposed to be the pass’s job.

of course, adding —- is a useful debugging trick when the pass is doing something unexpected.

from dahlia.

rachitnigam avatar rachitnigam commented on July 19, 2024

Further minimizing the program:

let n: ubit<6> = 4;
let m: ubit<6> = 0;
let i: ubit<6> = 0;

while (m < n) {
  while (i < m) {
    let end: ubit<6> = i + 1;
    let j: ubit<6> = 0;
  }
  m := m + 1;
}

The problem seems to be that the sequentialize pass does not add a --- between while (i < m) { ... } and m := m + 1.

from dahlia.

rachitnigam avatar rachitnigam commented on July 19, 2024

Thanks for reporting this @cgyurgyik. A good rule of thumb for finding these kinds of issues: if a program type checks without --lower, you should never have to add any "fake" ---. The compiler should do that for you.

Since --- slow down the programs by sequentializing statements, it is always a good idea to minimize them by just running the compiler without --lower. If you run into any more of these, please report them too!

from dahlia.

cgyurgyik avatar cgyurgyik commented on July 19, 2024

Thanks for reporting this @cgyurgyik. A good rule of thumb for finding these kinds of issues: if a program type checks without --lower, you should never have to add any "fake" ---. The compiler should do that for you.

Since --- slow down the programs by sequentializing statements, it is always a good idea to minimize them by just running the compiler without --lower. If you run into any more of these, please report them too!

Ok good to know. Here, I initially wasn't sure whether this was part of a pass, or whether it was required by me, the programmer, to place the ---. Hence, the question mark.

from dahlia.

sampsyo avatar sampsyo commented on July 19, 2024

Indeed! To put it ever so slightly differently, --- "should" never affect program semantics, i.e., the output. (Removing --- should never change the output, although it can make a program not type-check. Adding --- to a well-typed program should neither change the output nor cause a type error.) If it does, that's a compiler bug.

from dahlia.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.