jluna icon indicating copy to clipboard operation
jluna copied to clipboard

Julia Wrapper for C++ with Focus on Safety, Elegance, and Ease of Use

Results 13 jluna issues
Sort by recently updated
recently updated
newest added

I am running julia on windows. I can compiler the library and jluna_test.exe. However, when I started jluna_test.exe, I got an error "Unable to load dependent library C:\soft_using\julia-1.9.4\bin\../bin/libjulia-codegen.dll". Here is...

When running code that uses CUDA.jl i get a `CUDA.CuError(code=CUDA.cudaError_enum(0x00000004), details=CUDA.Optional{String}(data=nothing))` MWE: ``` #include using namespace jluna; int main() { initialize(); Main.safe_eval(R"( using CUDA x = CuArray([1]).+1 )"); return 0;...

Noticed that for lambda's with 3 args things where failing for some reason, but 1 and 2 things were fine, after looking at the generated code I think this is...