I am very new to Julia with python background and I am just testing DifferentialEquations package.
I run a simple jl script from command line and the problem is that it takes about a minute to run a simple code that Benchmark shows it need a few milliseconds to execute and also it take about 1GB of RAM. Am I doing something wrong or it is quite normal in Julia?
This is the simple script I got from the Tutorial:
import DifferentialEquations
import Plots
pl = Plots
df = DifferentialEquations
f(u,p,t) = 0.98u
u0 = 1.0
tspan = (0.0, 1.0)
prob = df.ODEProblem(f, u0, tspan)
sol = df.solve(prob)
I am using Ubuntu 18.04 and Julia 1.4.