Marek Kaluba

Results 59 issues of Marek Kaluba

by doing `promote` stuff simple arithmetic allocates a lot: ```julia julia> z = ArbComplex(2) 2.0 + 0im julia> @time z+1; 0.000023 seconds (11 allocations: 600 bytes) ``` by exploiting `arb`s...

I guess arbs `slong` translates to `Clong` on the julia side: ```julia julia> w = typemax(Cint) +1 2147483648 julia> ArbComplex(w) ERROR: InexactError: trunc(Int32, 2147483648) (...) julia> z = ArbComplex{128}() 0...

Arb has [acb_calc](http://arblib.org/acb_calc.html), where `acb_calc_integrate` is provided. I tried to wrap the function as follows ```julia #src/float/integrate.jl struct acb_calc_integrate_opt_struct deg_limit::Cint #slong eval_limit::Cint #slong depth_limit::Cint #slong use_heap::Cint #int verbose::Cint #int function...

Sorry, but there will be no video for this one, It's literally too simple ;) Happens with ```julia [c3e4b0f8] Pluto v0.19.0 ``` Consider the following code: ```julia julia> struct AAA...

reactivity

this is using `v0.5.2` (current master) of [Groups.jl](https://github.com/kalmarek/Groups.jl) ``` julia> using Groups [...] julia> let R = 9, F2 = Groups.FreeGroup([:a, :b, :c]) S2 = [gens(F2); inv.(gens(F2))] @time l3 =...

to check one element of #59 off https://github.com/kalmarek/PermutationGroups.jl is not battle tested, but achieves reasonable perf. It'd be great to have a serious user ;) ┆Issue is synchronized with this...

## Specifications - OS: Arch Linux - SCS Version: `master` at 5be0e1684d12c4cfd4d22c5fba236a84a092ab5b - Compiler: gcc ## Description scs fails at solving `./out/demo_socp_gpu 1000 0.5 0.5 1` ## How to reproduce...

## Specifications - OS: julia distribution of SCS - SCS Version: 3.2.0 - Compiler: gcc ## Description SCS-3.2.0 fails to converge. ## How to reproduce the attached file contains a...

I have a class of SD problems for which `SCS-1.2.6` was able to obtain a very accurate (1e-10) solution (albeit converging slowly), but `SCS-2.0.2` is not. SCS Logs show a...

While I see that title seems tautologic ;-) and that issue may very well be a feature, please consider the following example: ```julia X = Array{Float64}(2,2) X[1,1] = rand() X[2,1]...