Jack Pappas
Jack Pappas
@diskdan The original package name was "FSharp.Tools". That was a bit too generic, so I renamed the project and package name to "Facio"; I think it was for 0.8.6 or...
What about gathering the data using something like [bpftrace](https://github.com/iovisor/bpftrace) / [bcc](https://github.com/iovisor/bcc)? The PEP 578 audit hook @mattip mentioned is included in the static probes / tracepoints compiled into CPython (search...
Added dexplo and datatable. dexplo is an interesting one because it's a minimalist design and already adheres to some of the API requirements we've discussed, such as requiring column labels...
@mattip There is indeed -- I've just opened PR #107 with some changes to fix how threading is handled in the benchmarks.
We're calling ``pn.initialize()`` within the ASV benchmarks: https://github.com/Quansight/numpy-threading-extensions/blob/97c60ed86fa105e18e1b5d2373576694863787be/benchmarks/bench_ufunc.py#L19 The current version of ``pn.initialize()`` just calls ``pn.init()``: https://github.com/Quansight/numpy-threading-extensions/blob/97c60ed86fa105e18e1b5d2373576694863787be/src/pnumpy/__init__.py#L56
@mattip One thing that could be causing this -- I ran the latest benchmark code on Windows, and you're running it on Linux. ``asv`` supports running benchmarks in individual subprocesses,...