1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
//! User-defined MPI reduction operations via [`MPI_Op_create`].
//!
//! This module provides [`UserOp<T>`], a safe wrapper around a user-supplied
//! Rust closure that MPI invokes during reduction collectives
//! (`MPI_Reduce`, `MPI_Allreduce`, `MPI_Scan`, etc.).
//!
//! ## Safety model
//!
//! The closure must satisfy `Send + Sync + 'static`:
//!
//! * **`Send`** — the closure is moved into a static slot table accessible from
//! any thread (MPI may call it from an internal thread pool).
//! * **`Sync`** — under `MPI_THREAD_MULTIPLE`, the same op may be invoked
//! concurrently from several threads.
//! * **`'static`** — the closure is held until `MPI_Op_free` returns, which may
//! be much later than the call site.
//!
//! ## Panic behaviour
//!
//! **A panic inside the closure aborts the process immediately.**
//!
//! Panicking across a C FFI boundary is undefined behaviour; there is no
//! mechanism for MPI to propagate or observe a Rust panic. The trampoline
//! wraps every closure call in [`std::panic::catch_unwind`]: on `Err` it calls
//! [`std::process::abort`] before the panic can reach the C frame. Treat a
//! panic inside a reduction closure as a fatal programming error.
//!
//! ## Slot-table limit
//!
//! The implementation supports at most **16** concurrently live `UserOp`
//! instances per process. Attempting to create a seventeenth returns
//! [`Error::Mpi`] with class `Other`.
//!
//! ## `compile_fail` doctest — `Send + Sync` bound
//!
//! ```compile_fail
//! use ferrompi::UserOp;
//! let local = std::rc::Rc::new(0i32);
//! let op = UserOp::new(move |_a: &[f64], _b: &mut [f64]| {
//! let _ = local.clone();
//! });
//! ```
use PhantomData;
use c_void;
use crateMpiDatatype;
use crate;
use crateffi;
// ============================================================================
// Slot count — must match MAX_OPS in csrc/ferrompi.c
// ============================================================================
const MAX_OPS: usize = 16;
/// Type alias for the byte-level closure stored in each op slot.
///
/// Using an alias avoids the `clippy::type_complexity` lint at every use site.
type ByteClosure = ;
// ============================================================================
// Static closure registry
//
// Each slot holds a byte-level closure adapter. The adapter is a
// `Box<dyn Fn(&[u8], &mut [u8]) + Send + Sync + 'static>` constructed in
// `UserOp::new_impl` from the caller's typed `Fn(&[T], &mut [T])` by wrapping
// it in a byte-reinterpreting adapter closure.
//
// OnceLock is used so that each slot can be written exactly once and read many
// times concurrently, without requiring a Mutex. Dropping the UserOp must
// reconstruct the Box from the raw pointer rather than going through OnceLock
// again (OnceLock does not expose a reset path); see `ferrompi_op_drop_closure`.
// ============================================================================
/// Per-slot registry of raw fat-pointer halves.
///
/// We cannot store `Box<dyn Fn(...)>` in a static array of `OnceLock` because
/// statics require `const`-initializable values and `OnceLock::new()` is
/// `const`-stable only from Rust 1.70+, but more importantly we need to be
/// able to reconstruct and drop the `Box` from `ferrompi_op_drop_closure`,
/// which is called from C and cannot go through the OnceLock API.
///
/// The chosen approach: store the two halves of the fat pointer (`*mut ()` data
/// and `*mut ()` vtable) as atomic raw pointers. We encode "unset" as null and
/// "set" as non-null. The fat pointer is stored atomically so that concurrent
/// reads from MPI threads are data-race-free (Relaxed load is sufficient since
/// the store in `new_impl` happens-before any MPI invocation of the trampoline —
/// MPI_Op_create establishes that ordering).
///
/// In practice the registry data and vtable are written once (in `new_impl`)
/// and then only read (in `rust_user_op_invoke`) or reset to null (in
/// `ferrompi_op_drop_closure`). We use `AtomicPtr` with `Relaxed` ordering
/// because:
/// * The store in `new_impl` is sequenced before `MPI_Op_create` which is the
/// happens-before anchor for all subsequent MPI trampoline calls.
/// * `ferrompi_op_drop_closure` is called from `ferrompi_op_free` which is
/// called only after `MPI_Op_free` returns — MPI guarantees no further
/// trampoline calls after that point.
use ;
// SAFETY: AtomicPtr<()> is Send + Sync by design; raw pointers are wrapped in
// atomics which provide the necessary synchronisation.
unsafe
unsafe
static REGISTRY: = ;
// ============================================================================
// Extern "C" callbacks exposed to the C layer
// ============================================================================
/// Called by each C trampoline `ferrompi_user_op_trampoline_N`.
///
/// The C trampoline passes the slot's fat-pointer halves and the raw buffer
/// pointers it received from MPI. This function reconstructs the byte-level
/// closure and invokes it, wrapped in `catch_unwind`.
///
/// # Safety
///
/// * `closure_data` and `closure_vtbl` are the two halves of a valid
/// `*mut dyn Fn(&[u8], &mut [u8]) + Send + Sync + 'static` fat pointer
/// previously stored by `UserOp::new_impl`.
/// * `invec` is a valid read-only pointer to `len * byte_size` bytes.
/// * `inoutvec` is a valid read-write pointer to `len * byte_size` bytes.
/// * `dt_tag` is the `FERROMPI_*` tag that matches the type `T` the `UserOp`
/// was parameterised with.
///
/// Called from C, so the ABI must be exactly `extern "C"`.
pub unsafe extern "C"
/// Called by `ferrompi_op_free` (in C) after `MPI_Op_free` returns.
///
/// Reconstructs the `Box<dyn Fn(...)>` from the raw fat pointer halves stored
/// in the slot and drops it. After this function returns, the slot is cleared
/// by `free_op_slot` in C.
///
/// # Safety
///
/// * `slot` must be in range `0..MAX_OPS`.
/// * The fat pointer stored in `REGISTRY[slot]` must point to a valid
/// `Box<dyn Fn(&[u8], &mut [u8]) + Send + Sync + 'static>` that was
/// previously stored by `UserOp::new_impl` and has not yet been dropped.
/// * This function is called exactly once per `UserOp`, from C, after
/// `MPI_Op_free` has returned.
pub unsafe extern "C"
// ============================================================================
// UserOp<T>
// ============================================================================
/// A user-defined MPI reduction operation backed by a Rust closure.
///
/// `T` must implement [`MpiDatatype`] — i.e., it must be one of the primitive
/// types recognised by ferrompi (`f32`, `f64`, `i32`, `i64`, `u8`, `u32`,
/// `u64`).
///
/// The closure receives `invec` as a shared slice and `inoutvec` as a mutable
/// slice of the same length. It must accumulate `invec[i]` into `inoutvec[i]`
/// for each index `i` — the standard MPI semantics for user reduction
/// functions.
///
/// # Thread-safety
///
/// The closure is called from whichever thread MPI uses internally for the
/// reduction. Under `MPI_THREAD_MULTIPLE` the same op may be invoked
/// concurrently from multiple threads; the closure must be safe for concurrent
/// invocation, enforced by the `Sync` bound.
///
/// # Panic behaviour
///
/// A panic inside the closure **aborts the process**. See module-level
/// documentation for details.
///
/// # Slot-table limit
///
/// At most 16 `UserOp` instances may be live concurrently per process.
///
/// # Examples
///
/// ```no_run
/// use ferrompi::{Mpi, UserOp};
///
/// let mpi = Mpi::init().unwrap();
/// let world = mpi.world();
///
/// let op: UserOp<f64> = UserOp::new(|invec: &[f64], inoutvec: &mut [f64]| {
/// for (x, y) in invec.iter().zip(inoutvec.iter_mut()) {
/// *y = x.max(*y);
/// }
/// }).unwrap();
///
/// let send = vec![world.rank() as f64 + 1.5_f64];
/// let mut recv = vec![0.0_f64];
/// world.allreduce_with_op(&send, &mut recv, &op).unwrap();
/// ```
// ============================================================================
// Unit tests
// ============================================================================