Paul Liu
Paul Liu
@DrTodd13 can you help with the setting in Travis? Thanks!
Believe it is some setting that must be done on Travis site, not in a file in the git repo itself.
@DrTodd13 Giving @RyanGlScott commit access sounds like a good idea to me, since he had worked on this and can help maintain it. What do you think?
things like `*=` are already supported. I just added `.*=` and a few others. There is a ticket to support left division `A \ B`. See #33 There are a...
This was partly discussed in #35 In short, we do not support Julia's semantics of broadcast, and personally I don't think we can. We should amend our documentation to reflect...
Unfortunately I realized that our macro translation for comprehension does not yet support syntax such as `[... for x in a]` when `a` is an array. ParallelAccelerator only works when...
Would it be useful to have an alternative backend that lowers parallel IR into sequential for loop? This way we won't be limited by CGen, and can focus on testing...
Frankly, I wasn't even aware that array selections can be used to change dimension. I _can_ add a translation in domain IR to turn it into reshape. They are not...
Domain IR tries to guess the return type since the incoming AST could just be `Any` type. However, there is no guarantee that there is only one return statement, or...
The problem looked like caused by `importall` in `embed()`. So I tweaked it a bit further in this commit 437e892, now we get over the above problems, but run into...