Jonathan Barronville
Jonathan Barronville
By the way, the following is the relevant __Gradle__ configuration: __build.gradle__: ```gradle plugins({ id('com.hendraanggrian.packr-gradle-plugin') .version('0.1') }) ``` __settings.gradle__: ```gradle pluginManagement({ repositories({ maven({ content({ includeGroup('com.badlogicgames.packr') }) url('https://oss.sonatype.org/content/repositories/snapshots') }) jcenter({ content({ includeGroup('com.hendraanggrian')...
I managed to get the plugin to apply and show the relevant tasks by making the following updates to the __Gradle__ configuration: __build.gradle__: ```diff @@ -1,4 +1,4 @@ plugins({ -...
@hendraanggrian No worries! Thank you for your work. If I had the time, I’d make some of the updates for you, but unfortunately, my time is limited at the moment...
@jwerle How hard would it be to contribute changes back [upstream](http://software.schmorp.de/pkg/libcoro.html)? If it's possible, I think it'd be better than making the changes here, unless we've decided to actually maintain...
@jtnelson Yes, on it.
@rosslwheeler Unless explicitly mentioned, I don’t think it’s safe to assume C11 support. There’s pretty broad compiler support for atomics via intrinsics (GCC/Clang/etc.)—maybe use those instead? You could also check...
@karpathy I’ve moved the types update to a separate PR (#188), so you can evaluate it in isolation.
@karpathy I just fixed the merge conflicts. Is there anything holding this PR back?
@karpathy Given your comment in PR #186 (https://github.com/karpathy/llm.c/pull/186#issuecomment-2067294452), you mind telling me what issues you see with this types update? I think using the exact width types is the correct...