Christopher Tessum

Results 18 issues of Christopher Tessum

Hi, I am trying to run [this tutorial](https://docs.sciml.ai/DiffEqGPU/stable/tutorials/gpu_ensemble_basic/) on my laptop, which has an M1 processor. My understanding is that to do this, I should just change `CUDA` to `Metal`:...

When following this [SINDy example](https://docs.sciml.ai/DataDrivenDiffEq/stable/libs/datadrivensparse/examples/example_02/), a logical final step would be to run a simulation with the discovered system of equations to inspect the result that it gives. One of...

documentation

Hello! I'm trying to debug an issue where I have a PDE system that takes a very long time for `solve` to run at a low point count (equivalent to...

Hello, As suggested in #311, I am experimenting with using the JuliaSimCompiler to allow the use of simulations with larger point counts. I am working with a system similar to...

Hello, The code below is a version of the [Brusselator example](https://docs.sciml.ai/MethodOfLines/stable/tutorials/brusselator/), modified only by changing alpha from a numeric value to a @parameter: ``` julia using ModelingToolkit, MethodOfLines, OrdinaryDiffEq, DomainSets...

Hello, Here is a small example with units: ``` julia using ModelingToolkit, MethodOfLines, OrdinaryDiffEq, DomainSets using Unitful function ModelingToolkit.get_unit(a::Pair{Num, Float64}) ModelingToolkit.get_unit(a[1]) end @parameters x [unit=u"m"] @parameters t [unit=u"s"] @variables u(..)...

Hello, I'm using Proj in some code where I'm trying to avoid allocations and dynamic dispatches for performance. To assist with this, I'm using the [AllocCheck.jl](https://github.com/JuliaLang/AllocCheck.jl) packages, which finds allocations...