Cristóvão Duarte Sousa
Cristóvão Duarte Sousa
Hi, I just want to ping you about this apparently fully fledged language server for C++: https://github.com/jacobdufault/cquery It may be, for now, a better alternative to the rather incomplete Clangd...
After updating to KernelAbstractions.jl v0.8, I'm seeing a strange repetitive recompilation: ```julia using CUDA, KernelAbstractions, CUDAKernels f(x) = x[1] function test() v = CuArray(zeros(10)) w = CuArray(zeros(10)) @kernel k(a) =...
For example, this: ``` Int32.(ceil.(oneAPI.oneArray([1.2f0]))) ``` fails with `Reason: unsupported call to an unknown function (call to gpu_malloc)` As @maleadt said, the reason is: > we don't have a device-side...
I think that this PR explains itself https://github.com/JuliaArrays/StaticArrays.jl/pull/980, and I think that such change is something that makes even more sense in this package.
Hi, it would be nice to be possible to set the camera controls to "trackball" https://threejs.org/docs/#examples/en/controls/TrackballControls, https://threejs.org/examples/misc_controls_trackball.html . Is it already possible?
Hi, I have been trying to wrap a lib of mine using the CMake interface and I am getting an error about calling non-existing default constructor. I was able to...
Hi, it seems that there are some efforts to allow "interoperability with C++ code" from other languages in a "backward compatible way": [CppInterOp](https://cppinterop.readthedocs.io/en/latest/index.html) https://github.com/compiler-research/CppInterOp/tree/main This is probably no news for...
Example: ```julia using Symbolics @variables x y e = (x*y) + sin(x*y) + sqrt(sin(x*y)) Symbolics.cse(e) ``` returns an intermediate variable for `x*y` and another for `sin(x*y)`. It would be expected...
OpenCV.jl is not working in Julia 1.10 (https://github.com/JuliaImages/OpenCV.jl/issues/36). It seems to have something to do with OpenCV_jll, something like it not being compiled against the newest CxxWrap and libjulia. Trying...
Hi, great package! A step further in type safety :) I think that returning nothing in case a function is type safe as well as when the function has a...