Rob Stewart

Results 59 comments of Rob Stewart

Note: this issue is further discussed in June/July 2014 on the accelerate mailing list [here](https://groups.google.com/d/msg/accelerate-haskell/EEHvgVGhI8Q/ocwDzm7P9wIJ).

This is great! I am using this code, to good effect. A pull request would be useful for others. Thoughts @bnbeckwith ?

I agree that the default should be this feature being turned off. @ag91 it'd be good to include documentation, both in README.org and in writegood-mode.el, stating how to enable/disable this...

@jrprice I was also affected by https://github.com/jrprice/Oclgrind/issues/164#issuecomment-477168536 . Linux, Fedora 31. This change fixed it for me also: ``` - clangLex clangBasic - ${LLVM_LIBS}) + clangLex clangBasic) + +target_link_libraries(oclgrind PUBLIC...

To address an earlier question raised by @rrnewton on this issue. The closure/static representation in HdpH was also cut away from the rest of HdpH back in July 2012. At...

As pointed about by @endrix , the straight forward CAL solution is to not use `i` in a CAL foreach statement, i.e. to rewrite ``` foreach int(size=16) i .. ```...

@Bazmundi hi, can this issue be closed now?

@Bazmundi hi, can this issue be closed now?

@junaidjameel the closest (complete) actor example containing your action is: ``` package cal; actor my_actor() uint(size=8) In ==> uint(size=8) OP: List(type:uint(size=8),size=192) pt; action In:[xs] repeat 192 ==> do foreach int...

I've pushed a fix for this. What is does this is: previously when compiling: ``` package cal; actor CastActor() ==> : my_action: action ==> var uint(size=32) a, uint(size=32) b, uint(size=64)...