goerch
goerch
Over at Discourse we are having [this discussion](https://discourse.julialang.org/t/problem-with-packagecompiler/78130). Should we file this against Julia?
From an discussion over at [Discourse](https://discourse.julialang.org/t/symbolic-derivation-of-complex-valued-functions-with-symbolics-jl/78230/3) we have for example ``` using Symbolics @variables x::Float64 D = Differential(x) @show D @show D(x) @show expand_derivatives(D(x)) @variables z::Complex{Float64} D = Differential(z) @show...
The following cell from my notebook ``` from sklearn.feature_selection import VarianceThreshold from sklearn.feature_selection import SelectFpr, SelectFdr, SelectFwe from sklearn.preprocessing import FunctionTransformer, StandardScaler, MaxAbsScaler, RobustScaler from sklearn.linear_model import LogisticRegression, LogisticRegressionCV from...
When benchmarking a possible allocator design for node based containers I noticed some performance oddities with - List - AVLTree - RBTree - Stack - Queue Please see https://github.com/goerch/Allocators.jl. Comments...
This commit contains the changes needed to make the tests running locally against the installed Julia tests.
What is the recommended way to run `juliatests.jl` on VS Code?
Fix #284
Tested on Windows 11 with CPU-only. During compilation I see ``` warning D9002: Unbekannte Option "-mfma" wird ignoriert. warning D9002: Unbekannte Option "-mf16c" wird ignoriert. warning D9002: Unbekannte Option "-mavx"...
Fix #292
Start of this edit. Would like to get some guidance on how to proceed... Remarks: - Checked with clang on Windows 11 for unused variables in release configuration - There...
Based on the fix for #292 here a try to fix #286 (with the caveat: tested only on CPU). The patch adds the llama.cpp tests for quantization. One question I'm...
Randomly noticed that `ggml_set_f32`'s signature is ``` struct ggml_tensor * ggml_set_f32(struct ggml_tensor * tensor, float value); ``` and it forwards the `value` without explicit conversion to ``` inline static void...