Viewing profile — simeonschaub
simeonschaub
HN member- Joined
- Fri, Apr 30, 2021, 8:13 AM UTC
- HN karma
- 22
- Public activity
- 7 items
- HN profile
- View on Hacker News ↗
About simeonschaub
No profile information was provided.
Recent public activity
-
comment
Comment #30307944
It reads to me like ATL is actually more of a tensor compiler than a general-purpose language. In fact, I'd actually be curious if we could lower (subsets of) Julia to ATL, let it …
-
comment
Comment #29587004
In Julia you would just use an array of views for this, which can represent slices of arrays without any copies: julia> struct Muon p_T::Float64; phi::Float64; eta::Float64; end ju…
-
comment
Comment #29400664
> how is running in debug compiled mode different than just...running the code normally? It's not. By default, the debugger will recursively interpret any nested function calls unt…
-
comment
Comment #29400601
I would not go as far as calling it very naive, there has certainly been some work put into optimizing performance within the current design. There are probably some gains to be ha…
-
comment
Comment #29400343
Yes, it uses Debugger.jl, which relies on JuliaInterpreter.jl under the hood, so while you can tell the debugger to compile functions in certain modules, it will mostly interpret y…
-
comment
Comment #27005121
Julia already comes with an interpreter, try starting your session with `julia --compile=min`. One part of the ongoing effort to reduce latencies is to allow package authors to spe…
-
comment
Comment #26990943
Check out https://github.com/fredrikekre/jlpkg . It does pretty much exactly what you are describing.