-
I just found this after reading some of Daan's papers which led me to your new JCP paper. I'm excited to try it... However, I'll need to port it to Julia first. Any interest in that?
-
### Summary
I've noticed that the `@unsafe_region` macro, when applied to a specific `TensorNetwork`, actually affects all tensor networks within its block, even those not specified. This behavior is…
-
I wanted to revisit an old test case, so ran `examples/fokker-planck/fokker-planck-relaxation`, on a single core, with #289 at the present commit. I have an install with Julia-provided MPI and HDF5. I…
-
It can be 50x slower. See the following benchmark:
```julia
julia> using Dates, NanoDates
julia> using BenchmarkTools: @btime
julia> tstr = "2024-09-23T19:32:06.202111"
julia> @btime NanoDate($ts…
-
With the latest Julia nightly as of the date of writing,
```
anshul ~/git/InteroperableJuliaBinaries julia +nightly juliac.jl --output-lib simple.so --compile-ccallable --trim ksmooth.jl
…
-
The `backend` preference does not constrain the code to only use any specific background . For example
```julia
julia> using JACC: JACC
julia> JACC.JACCPreferences.backend
cuda
julia> JACC.Array
…
-
I can think of a lot of uses for a native-Julia reprojection/warping functionality (e.g. lazy warp etc). I think we have most of the tools from ImageTransformations and Interpolations as well.
Is …
-
In issue #462, regression test is set up for comparing output of a run with the benchmark.
@visr suggests to add runtime into benchmark and make use one of existing Julia package to illustrate the…
-
```julia
using Pkg
Pkg.activate(".")
Pkg.instantiate()
# AlgebraicJulia Dependencies
using Catlab
using Catlab.Graphics
using CombinatorialSpaces
using Decapodes
using ComponentArrays
using ForwardDi…
-
Hi,
a single pixel in the digital domain should correspond to a sampled sinc function in the center, right?
But why is the following not the same. `sinc(x .- 0.5)` is not equal to `shift(x, 0.…