Andrew
Andrew
The second point is exactly the case: `compiler-builtins` crate provides a `memset` that is always included in the output staticlib, so it collides with libc memset even when memset is...
Some follow-up on this: It appears that the cleanest solution for this might be to first do: `cargo install cargo-binutils` so then you can do: `cargo objcopy --release --lib --...
@Amanieu Are your "hacks" in your own C-side build system? I am encountering this problem when trying to do a pretty straightforward linking of a rustlib `.a` to a C...
Interesting. Along the same lines: is OpenCL accel built into the OpenCV lib? Again, I know little about it, but this SO suggests that it needs to be explicitly enabled:...
Interesting. As far as I know, the standard development cycle for CUDA is to implement, then use the nvidia profiler to check if you are using all your bandwidth for...
Any chance we can get this merged? I need this functionality in my dockerized build ... can't see any other way to work around it.
That very problem is why I though to re-organize them ... but it's an incomplete concept. Ideally, we'd have some paradigm for a CSP package and a BSP package, and...
My feedback here is (unless I am missing something): This would still allow someone to build an un-runnable binary. Adding a `_Static_assert` might be a worthwhile addition, e.g. ``` #ifdef...
One solution would be to directly implement `give` and `take`, per the FreeRTOS API, which does not hand back a SemaphoreGuard. `lock`, which does, can still exist, too. This would...
@jremen afaik, the Neural Engine is not a general accelerator, and only usages that can be fit into the coreML framework would be able to target it. I believe the...