Matthias Kurtenacker

Results 12 comments of Matthias Kurtenacker

This has become part of the development branch at this point.

This issue has been stale for a couple of years; we consider this resolved for the time being.

See https://github.com/AnyDSL/runtime/pull/57 for further discussion.

Is ABSL_BUILD_TESTING set to ON by any chance?

Somewhat surprisingly, this seems to work: ``` FetchContent_Declare(Half URL https://sourceforge.net/projects/half/files/latest/download DOWNLOAD_NAME half.zip ) ``` I guess Sourceforge has changed the way in which downloads are handled.

PR #23 would fix this for the setup script. This would remove our last dependency to svn.

This could maybe be fixed by wrapping empty continuations in closures whenever this comes up: ``` --- a/src/thorin/transform/closure_conversion.cpp +++ b/src/thorin/transform/closure_conversion.cpp @@ -76,9 +86,34 @@ public: // prevent conversion of calls...

See also cgra-merge on [artic](https://github.com/m-kurtenacker/artic/tree/cgra-merge) and [runtime](https://github.com/m-kurtenacker/runtime/tree/cgra-merge)

I'll mark this as a draft for the time being, our header files need some TLC.

There is a potential issue when the other parameters are bound to the default expression: ``` fn test2(l : i32) { l } fn test(a : i32, b = test2(a))...