Valentin Churavy
Valentin Churavy
How did you build Julia or where did you install Julia from?
Yes and no. we could try linking against a non-versioned variant of LLVM, but we would still assume at least a shared library built of LLVM (not necessarily the default)...
> , and then have different releases of LLVM.jl that declare compatibility with libLLVM_jll versions. I assume you mean LLVMExtra_jll? This for me isn't as attractive as a LLVM platform...
> I would prefer to request Manjaro to set the version field of libLLM_jll to v12.x.x That is also not sufficient since the symbol versioning of LLVM causes a so...
I think everything in `lib` is autogenerated.
I don't think we can make them weak. Weak symbols ignore symbol versioning and that could cause some havoc. We do have https://github.com/maleadt/LLVM.jl/blob/81046c7aca7a18e19bc200ba3368c23a29e7c8e1/deps/LLVMExtra/lib/llvm-api.cpp#L32-L80, but not actually `LLVMInitializeNVPTXTargetInfo`. I see some...
The one wish I have would be to resolve the doxygen links to the C++ API
On my phone so looking at the large diff is hard, but there are references to the C++ API (e.g. See llvm::...) That point to outside the C API and...
To chime in on the topic of `NaN`. When I first encountered DataArrays i particularly liked that the design didn't include `NaN` as sentinel values for missingness. If I want...
@johnmyleswhite Thanks for the explanation. I imagine that that `Array{T}` part in a `NullableArray{T}` has to be allocated fully? Otherwise no zero-copy of the raw data would hardly be possible....