Commit graph

191 commits

Author SHA1 Message Date
Simon Cruanes
43cd6035db
TEMP: printf 2024-02-08 20:39:35 -05:00
Simon Cruanes
03676f2e3d
wip: moonpool_unix 2024-02-08 20:39:35 -05:00
Simon Cruanes
57be8f2130
main module 2024-02-08 20:39:35 -05:00
Simon Cruanes
9e2026e462
cleanup 2024-02-08 20:39:35 -05:00
Simon Cruanes
56c32ff5a0
add moonpool.unix with a basic event loop 2024-02-08 20:39:35 -05:00
Simon Cruanes
c3ef591231
fix in task local storage 2024-02-08 20:39:35 -05:00
Simon Cruanes
bed47fc795
expose Tracing 2024-02-07 23:18:24 -05:00
Simon Cruanes
373a8c0f3b
restore DLA 2024-02-07 23:17:01 -05:00
Simon Cruanes
f0f90d2651
cleanup 2024-02-07 23:17:01 -05:00
Simon Cruanes
fdea3797e7
feat: add structured concurrency moonpool.fib 2024-02-07 23:17:00 -05:00
Simon Cruanes
a69b6b8204
fix 2024-02-07 23:17:00 -05:00
Simon Cruanes
dabfd83e14
fix 2024-02-07 23:17:00 -05:00
Simon Cruanes
f5e94496f5
fixes 2024-02-07 23:17:00 -05:00
Simon Cruanes
c05a38d617
add task_local_storage to core, modify how suspend works 2024-02-07 23:17:00 -05:00
Simon Cruanes
f84414a412
feat: add Exn_bt to core 2024-02-07 23:17:00 -05:00
Simon Cruanes
ed711fdc82
make moonpool.forkjoin optional (only on OCaml >= 5.0) 2024-02-07 23:17:00 -05:00
Simon Cruanes
1a1687fce9
doc 2024-02-07 23:17:00 -05:00
Simon Cruanes
d751e560e8
remove deprecated Moonpool.Pool 2024-02-07 23:17:00 -05:00
Simon Cruanes
b6d48a141f
breaking: move fork-join into sub-library moonpool.forkjoin 2024-02-07 23:17:00 -05:00
Simon Cruanes
a47654b492
fix 2024-02-07 23:16:59 -05:00
Simon Cruanes
8ca3a87fe8
more internal refactor 2024-02-07 23:16:59 -05:00
Simon Cruanes
cb843d44e3
split into moonpool.private and moonpool; format; remove DLA 2024-02-07 23:16:59 -05:00
Simon Cruanes
e56dbc6a09
fix build 2024-02-07 15:49:01 -05:00
Simon Cruanes
27b213e30f
tracing: add optional name for pools 2024-02-07 13:31:48 -05:00
Simon Cruanes
8d83d5b691
perf: reduce size of Fut again 2024-01-30 17:06:20 -05:00
Simon Cruanes
4abc334ab3
fix 2024-01-30 16:38:31 -05:00
Simon Cruanes
8e9564a6f7
compat 2024-01-30 16:26:29 -05:00
Simon Cruanes
ef7d370060
more tracing for Fut 2024-01-30 16:25:31 -05:00
Simon Cruanes
092ad5f2ce
feat: support for trace as a depopt
one can now give tasks an optional string "name". If `Trace`
is present (installed) and enabled, this results in
a span around the task's execution. This also plays ok
with `await` and other effect-based primitives.
2024-01-30 16:10:11 -05:00
Simon Cruanes
469cb89ecd
feat: add Fut.Advanced.barrier_on_abstract_container_of_futures
this is a good building block for waiting on multiple futures.
2023-12-22 13:14:05 -05:00
Simon Cruanes
2d306c91b2
fix too early exit in Ws_pool
when shutting down the pool, workers should check `self.active`
only when they have no local task, failed to steal tasks,
and found the main queue to be empty. Basically we check `self.active`
only just before we wait on the condition.
2023-11-24 23:12:22 -05:00
Simon Cruanes
1c94c59d88
feat: add Fut.map_list 2023-11-17 12:41:29 -05:00
Simon Cruanes
fd2102c7fe
prepare for 0.5 2023-11-08 12:38:40 -05:00
Simon Cruanes
3f7ed7b6b8 moonpool: expose Fut.{spawn_on_current_runner,await} 2023-11-08 12:02:13 -05:00
Simon Cruanes
59ae1068fd breaking: fut: only have module Infix
we keep `Infix_local` as a deprecated alias to it for now
2023-11-08 12:02:13 -05:00
Simon Cruanes
d4e5e811bb breaking: fut: change behavior of ?on
combinators that take `?on` will now check if they can use the current
runner if `?on:None` is passed. If no runner is passed and they're run
from outside a runner, they will just run in the relevant callback or on
the current thread.
2023-11-08 12:02:13 -05:00
Simon Cruanes
9709f88d5f breaking: fut: join does not take ?on anymore 2023-11-08 12:02:13 -05:00
Simon Cruanes
9cb7781a2e feat: fut: add spawn_on_current_runner 2023-11-08 12:02:13 -05:00
Simon Cruanes
0a432585c6 fix: in WS_pool, only schedule in worker queues in some cases
only do it if we actually want to spawn the task on pool A while running
on a worker of A (not a worker on B).
2023-11-08 12:02:13 -05:00
Simon Cruanes
d2be2db0ef perf fork-join: in both f g only run f in the background
`g` can run immediately on same thread, otherwise we just suspend the
computation and start a new task for nothing.
2023-11-08 11:38:15 -05:00
Simon Cruanes
6e6a2a1faa feat runner: add get_current_runner
this relies on TLS to access the current pool really quickly.
2023-11-08 11:38:15 -05:00
Simon Cruanes
6fe7076099 update doc and readme 2023-11-08 11:36:10 -05:00
Simon Cruanes
2073c600c4 add Moonpool.run_async 2023-11-08 11:36:10 -05:00
Simon Cruanes
72f289af84 refactor: use a fixed size work-stealing deque
if it's full, tasks overflow into the main queue.
2023-11-08 11:36:10 -05:00
Simon Cruanes
80031c0a54 fix compilation error 2023-11-08 09:41:57 -05:00
Simon Cruanes
00a5cfc8ba fix: rename Thread_local_storage_ to not collide with the library 2023-11-08 09:41:57 -05:00
Simon Cruanes
133a0d6128 breaking: change interface for number of threads
now the user can specify `num_threads`; if not provided a sensible
default is picked.
2023-11-08 09:41:57 -05:00
Simon Cruanes
21ac980fb2 rename no_runner to immediate_runner 2023-11-08 09:41:57 -05:00
Simon Cruanes
056f80b318 add No_runner: a runner that doesn't do anything in the background
The idea is that you might have APIs that want a runner, but the work is
too trivial to require a full actual thread pool. In this case use
`No_runner.runner` and calls to `run_async runner f` will turn into `f()`.
2023-11-08 09:41:57 -05:00
Simon Cruanes
a3d3468b5e feat: add Moonpool.recommended_thread_count 2023-11-08 09:41:57 -05:00