Pith. sign in

REVIEW 2 major objections 2 minor 1 cited by

Harness Engineering for Physical AI: Robot Middleware Is the Harness Layer

T0 review · 2 major / 2 minor · reviewed 2026-06-27 · grok-4.3

Pith's one-line read Robot middleware is the harness layer that enforces AI model outputs on physical robots through mediation of control, computing, and communication.

desk verdict This paper reframes robot middleware as the harness for Physical AI with three named enforcement functions, but stays purely conceptual with no validation. read the letter →

arxiv 2606.09416 v1 pith:M6NFUDET submitted 2026-06-08 cs.RO cs.AIcs.SE

classification cs.ROcs.AIcs.SE
keywords robotmiddlewarePhysicalAIharnesslayerlearnedpoliciesProjectionIsolationTransferROS2
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper claims that learned policies, planners, and vision-language-action models now participate directly in robot control paths, yet the layer integrating them with timing, scheduling, and networks lacks a name. It proposes that robot middleware already supplies the necessary mediating abstractions over all three domains, so it should host the missing enforcement. This enforcement takes the form of three functions that gate outputs at emission, bound execution and transmission slots, and fall back to verified baselines. A reader would care because these steps could turn scattered application-level fixes into systematic, composable behavior at the lowest stack layer that already touches control, compute, and communication. The paper sketches the result as a ROS 2 Harness Profile that carries an AI model's declared output region, inference budget, and operating regime while the middleware enforces them.

What carries the argument

The Physical AI harness: the robot middleware layer that simultaneously mediates control, computing, and communication boundaries for learned models by composing Projection, Isolation, and Transfer.

What would settle it

Deploy the three functions inside current middleware such as ROS 2 on a robot running a learned policy and check whether timing violations, unsafe trajectories, or bandwidth overruns still require separate application code or new layers to resolve.

Watch

Extended reading notes

Core claim

Robot middleware is the lowest robot-stack layer with mediating abstractions over control, computing, and communication, so it is best positioned to compose the enforcement of an AI model's output. The missing enforcement consists of three functions: Projection gates each output at emission, Isolation bounds the model's execution and transmission slot, and Transfer falls back to a verified baseline when checks fail. Each function already appears as hand-built application code; middleware should host them together because a learned policy's output crosses all three domains at once. The paper proposes realizing this as a ROS 2 Harness Profile deployment artifact that declares an AI model's out

Load-bearing premise

The three functions of Projection, Isolation, and Transfer can be hosted and composed inside existing middleware abstractions without new hardware, model changes, or additional system layers.

Editorial extensions

If this is right

  • AI model outputs become gated at the point of emission using surfaces already present in middleware.
  • Model execution and transmission slots become bounded through middleware scheduling and network abstractions.
  • Systems gain an automatic fallback to verified baselines when AI checks fail.
  • A single deployment artifact can carry an AI model's output region, inference budget, and operating regime for enforcement across ROS 2, DDS, and Zenoh.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • This role could consolidate safety logic that is now duplicated across separate robot applications.
  • Language-agent harness ideas might transfer directly once middleware supplies the equivalent mediation for physical actuators and sensors.
  • Standardized profiles could let the same AI model declaration work across different robot hardware stacks without per-platform rewrites.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit.

Referee Report

2 major / 2 minor

Summary. The manuscript claims that robot middleware constitutes the harness layer for Physical AI systems. Learned policies and VLA models act as causal participants on the control path, requiring simultaneous mediation over control, computing, and communication; middleware is the lowest stack layer possessing mediating abstractions over all three, making it the appropriate host for three named enforcement functions—Projection (gating outputs at emission), Isolation (bounding execution and transmission slots), and Transfer (falling back to verified baselines). The paper sketches these functions as extensions of existing middleware surfaces and proposes a ROS 2 Harness Profile as a deployment artifact that carries model-declared constraints for enforcement across ROS 2, DDS, and Zenoh.

Significance. If the architectural recommendation holds, the work supplies a coherent framing that unifies scattered hand-built enforcement practices already present in deployed robot systems and identifies middleware as the natural composition point for AI-model safety constraints. This could influence standardization efforts in robotics middleware and encourage reusable profiles rather than per-application ad-hoc code, though the absence of any empirical validation or formal argument limits immediate impact to conceptual guidance.

major comments (2)
  1. [Abstract] Abstract: the central recommendation that middleware should host the three functions rests on the assertion that they 'appear today as hand-built application code' on middleware surfaces and can be composed without new layers; no argument or example is supplied showing that Projection, Isolation, and Transfer can be realized solely through existing abstractions (e.g., without changes to scheduling or network primitives), which directly bears on whether middleware is sufficient.
  2. [Abstract] Abstract: the claim that middleware is 'best positioned to compose their enforcement' because it is the lowest layer with simultaneous mediating abstractions over control, computing, and communication is presented without comparison to alternative layers (e.g., the real-time control layer or a dedicated safety monitor), leaving the optimality argument as a definitional preference rather than a substantiated architectural conclusion.
minor comments (2)
  1. The three functions are introduced as named entities without formal definitions or pseudocode; adding concise operational specifications would clarify how they map onto concrete middleware primitives.
  2. The distinction between a 'software harness' (tool-call boundaries) and a 'Physical AI harness' (control/compute/communication) is stated but not illustrated with a side-by-side example; a short comparative table or scenario would aid readability.

Simulated Author's Rebuttal

2 responses · 0 unresolved

We thank the referee for the constructive review and for recognizing the conceptual framing of robot middleware as the harness layer. We address the two major comments below and will incorporate clarifications in a revised manuscript to strengthen the architectural arguments.

read point-by-point responses
  1. Referee: [Abstract] Abstract: the central recommendation that middleware should host the three functions rests on the assertion that they 'appear today as hand-built application code' on middleware surfaces and can be composed without new layers; no argument or example is supplied showing that Projection, Isolation, and Transfer can be realized solely through existing abstractions (e.g., without changes to scheduling or network primitives), which directly bears on whether middleware is sufficient.

    Authors: We agree that the manuscript, being primarily conceptual, does not supply explicit implementation mappings or examples demonstrating realization solely on existing abstractions. The observation that similar patterns exist as hand-built code is noted but not elaborated with concrete primitives. In revision we will add a concise discussion (likely in Section 3 or a new subsection) providing illustrative mappings, such as using ROS 2 QoS policies and executor time budgets for Isolation, message filtering for Projection, and fallback topic remapping for Transfer, to show these can leverage current surfaces without core changes to scheduling or network primitives. revision: yes

  2. Referee: [Abstract] Abstract: the claim that middleware is 'best positioned to compose their enforcement' because it is the lowest layer with simultaneous mediating abstractions over control, computing, and communication is presented without comparison to alternative layers (e.g., the real-time control layer or a dedicated safety monitor), leaving the optimality argument as a definitional preference rather than a substantiated architectural conclusion.

    Authors: The manuscript's positioning rests on middleware being the lowest layer with simultaneous abstractions over all three domains, but we acknowledge the absence of explicit contrasts with alternatives. In the revision we will expand the relevant paragraph in the abstract and introduction to include brief comparisons, noting for example that real-time control layers typically mediate only control and computation without native communication mediation, while dedicated safety monitors often sit above middleware and lack direct integration into the control path. This will make the rationale more explicit without altering the core claim. revision: yes

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity; purely conceptual reframing

full rationale

The manuscript advances an architectural recommendation that robot middleware constitutes the 'harness' layer for Physical AI, naming three enforcement functions (Projection, Isolation, Transfer) and sketching their composition inside existing ROS 2 abstractions. No equations, derivations, fitted parameters, quantitative predictions, or empirical claims appear whose validity depends on untested technical preconditions or self-referential reductions. The central claim is definitional and does not reduce to its inputs by construction, matching the reader's assessment of low circularity burden. No load-bearing self-citations, uniqueness theorems, or ansatzes are invoked.

Assumptions & free parameters 0 free parameters · 1 assumptions · 3 invented entities

The central claim rests on the domain assumption that AI outputs simultaneously affect trajectory, schedule, and bandwidth, plus the introduction of three new enforcement functions without independent evidence of their sufficiency or implementability in middleware.

assumptions (1)
  • domain assumption A learned policy's output crosses control, computing, and communication simultaneously, requiring mediation at all three levels.
    Invoked in the abstract to justify why a Physical AI harness differs from a software harness.
invented entities (3)
  • Projection
    purpose: Gates each output at emission
    New function introduced to enforce AI model outputs; no independent evidence provided.
  • Isolation
    purpose: Bounds the model's execution and transmission slot
    New function introduced to enforce resource limits; no independent evidence provided.
  • Transfer
    purpose: Falls back to a verified baseline when checks fail
    New function introduced for safe fallback; no independent evidence provided.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Harness Engineering for Physical AI: Robot Middleware Is the Harness Layer." pith.science (2026). https://pith.science/paper/M6NFUDET

@misc{pith2026260609416,
  author       = {Pith},
  title        = {Pith review of: Harness Engineering for Physical AI: Robot Middleware Is the Harness Layer},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/M6NFUDET}},
  note         = {Machine review of arXiv:2606.09416}
}
read the original abstract

Robot middleware faces a new role in the era of Physical AI. Learned policies, planners, and vision-language-action (VLA) models now enter deployed robots as causal participants on the control path, but the layer that integrates them with timing, scheduling, and network has not been named. Recent language-agent work names this layer the harness, the external system that mediates tools, manages state, bounds resources, and records execution. The robotics community has not yet adopted this framing, and we propose that robot middleware is that harness. A Physical AI harness differs from a software harness in where it intervenes. A software harness mediates at tool-call boundaries. A Physical AI harness must mediate at control, computing, and communication simultaneously, because a learned policy's output crosses all three: its commands shift the trajectory, its inference time shifts the schedule, and its payload shifts the bandwidth. Robot middleware is the lowest robot-stack layer with mediating abstractions over all three, so it is best positioned to compose their enforcement. It already provides most of what a harness needs but lacks the enforcement for an AI model. We name this missing enforcement as three functions: Projection gates each output at emission, Isolation bounds the model's execution and transmission slot, and Transfer falls back to a verified baseline when checks fail. Each appears today as hand-built application code in deployed robot systems, built on surfaces robot middleware already provides. Robot middleware should host them not as the best single-axis enforcer but as the layer that composes all three. We sketch this as a ROS 2 Harness Profile, a deployment artifact that carries an AI model's declared output region, inference budget, and operating regime while the middleware enforces them across ROS 2, DDS, and Zenoh.

Figures

Figures reproduced from arXiv: 2606.09416 by the authors.

Figure 1
Figure 1. Robot middleware as the candidate harness layer in a ROS 2-based Physical AI stack. The application layer runs an AI [PITH_FULL_IMAGE:figures/full_fig_p004_1.png] view at source ↗
Figure 2
Figure 2. An AI model declares an output region, an inference budget, and an operating regime. The upper half shows what [PITH_FULL_IMAGE:figures/full_fig_p005_2.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. The Three Dimensions of ROS 2 Middleware

    cs.RO 2026-07 unverdicted novelty 5.0 of 10

    This survey introduces a three-dimensional conceptual framework (Space, Time, State) to analyze structural trade-offs and limits in ROS 2 middleware for distributed robotic systems.

Reference graph

Works this paper leans on

42 extracted references · 30 canonical work pages · cited by 1 Pith paper

  1. [1]

    Shubham Agarwal, Subrata Mitra, and Saud Iqbal. 2025. Argus: Quality-Aware High-Throughput Text-to-Image Inference Serving System. InProceedings of the 26th International Middleware Conference. ACM, New York, NY, USA, 13 pages. doi:10.1145/3721462.3770765

  2. [2]

    Mohammed Alshiekh, Roderick Bloem, Rüdiger Ehlers, Bettina Könighofer, Scott Niekum, and Ufuk Topcu. 2018. Safe Reinforcement Learning via Shielding. In Proceedings of the 32nd AAAI Conference on Artificial Intelligence. AAAI Press, Palo Alto, CA, USA, 2669–2678

  3. [3]

    Ames, Samuel Coogan, Magnus Egerst- edt, Gennaro Notomista, Koushil Sreenath, and Paulo Tabuada

    Aaron D. Ames, Samuel Coogan, Magnus Egerstedt, Gennaro Notomista, Koushil Sreenath, and Paulo Tabuada. 2019. Control Barrier Functions: Theory and Applications. In18th European Control Conference (ECC). IEEE, Piscataway, NJ, USA, 3420–3431. doi:10.23919/ECC.2019.8796030

  4. [4]

    Kevin Black, Noah Brown, Danny Driess, Adnan Esmail, Michael Equi, Chelsea Finn, Niccolo Fusai, Lachy Groom, Karol Hausman, Brian Ichter, et al

  5. [5]

    $\pi_0$: A Vision-Language-Action Flow Model for General Robot Control

    𝜋0: A Vision-Language-Action Flow Model for General Robot Control. arXiv:2410.24164. Preprint

  6. [6]

    Anthony Brohan, Noah Brown, Justice Carbajal, Yevgen Chebotar, Xi Chen, Krzysztof Choromanski, Tianli Ding, Danny Driess, Avinava Dubey, Chelsea Finn, et al. 2023. RT-2: Vision-Language-Action Models Transfer Web Knowledge to Robotic Control. InProceedings of the 7th Conference on Robot Learning (CoRL) (Proceedings of Machine Learning Research, Vol. 229)....

  7. [7]

    Brandenburg

    Daniel Casini, Tobias Blaß, Ingo Lütkebohle, and Björn B. Brandenburg. 2019. Response-Time Analysis of ROS 2 Processing Chains under Reservation-Based Scheduling. In31st Euromicro Conference on Real-Time Systems (ECRTS 2019) (Leib- niz International Proceedings in Informatics (LIPIcs), Vol. 133). Schloss Dagstuhl, Dagstuhl, Germany, 6:1–6:23. doi:10.4230/...

  8. [8]

    Jiyeong Chae, Sanghoon Lee, Junhyung Jang, Seohyung Hong, and Kyung-Joon Park. 2023. A Survey and Perspective on Industrial Cyber-Physical Systems (ICPS): From ICPS to AI-Augmented ICPS.IEEE Transactions on Industrial Cyber- Physical Systems1 (2023), 257–272

Show all 42 references
  1. [9]

    Angelo Corsaro, Luca Cominardi, Olivier Hécart, Gabriele Baldoni, Julien Enoch, Pierre Avital, Julien Loudet, Carlos Guimarães, Michael Ilyin, and Dmitrii Bannov

  2. [10]

    In2023 26th Euromicro Conference on Digital System Design (DSD)

    Zenoh: Unifying Communication, Storage and Computation from the Cloud to the Microcontroller. In2023 26th Euromicro Conference on Digital System Design (DSD). IEEE, Piscataway, NJ, USA, 422–428. doi:10.1109/DSD60849.2023.00065

  3. [11]

    Bernhard Dieber, Benjamin Breiling, Sebastian Taurer, Severin Kacianka, Stefan Rass, and Peter Schartner. 2017. Security for the Robot Operating System.Robotics and Autonomous Systems98 (2017), 192–203. doi:10.1016/j.robot.2017.09.017

  4. [12]

    Daniel Enright, Hyunjong Choi, Yecheng Xiang, and Hyoseung Kim. 2024. PAAM: A Framework for Coordinated and Priority-Driven Accelerator Management in ROS 2. In2024 IEEE 30th Real-Time and Embedded Technology and Applications Symposium (RTAS). IEEE, Piscataway, NJ, USA, 13 page...

  5. [13]

    Arpan Gujarati, Reza Karimi, Safya Alzayat, Wei Hao, Antoine Kaufmann, Ymir Vigfusson, and Jonathan Mace. 2020. Serving DNNs like Clockwork: Performance Predictability from the Bottom Up. In14th USENIX Symposium on Operating Systems Design and Implementation (OSDI). USENIX Ass...

  6. [14]

    Mingcong Han, Rong Chen, Weihang Shen, Han Zhang, Jingyu Yang, and Haibo Chen. 2025. Real-Time, Work-Conserving GPU Scheduling for Concurrent DNN Inference.ACM Transactions on Computer Systems44, 1 (2025), 1–42

  7. [15]

    Chaoyue He, Xin Zhou, Di Wang, Hong Xu, Wei Liu, and Chunyan Miao. 2026. Harness Engineering for Language Agents: The Harness Layer as Control, Agency, and Runtime. Preprints.org. doi:10.20944/preprints202603.1756

  8. [16]

    W. P. M. H. Heemels, Karl H. Johansson, and Paulo Tabuada. 2012. An In- troduction to Event-Triggered and Self-Triggered Control. In51st IEEE Con- ference on Decision and Control (CDC). IEEE, Piscataway, NJ, USA, 3270–3285. doi:10.1109/CDC.2012.6425820

  9. [17]

    Dan Hendrycks and Kevin Gimpel. 2017. A Baseline for Detecting Misclas- sified and Out-of-Distribution Examples in Neural Networks. InInternational Conference on Learning Representations (ICLR). OpenReview.net, Toulon, France, 12 pages

  10. [18]

    Bishal Jaiswal, Himanshu Tyagi, Aditya Gopalan, and Vishal Sevani. 2023. WiROS: A QoS Software Solution for ros2 in a WiFi Network. In15th International Con- ference on Communication Systems and Networks (COMSNETS). IEEE, Piscataway, NJ, USA, 8 pages. doi:10.1109/COMSNETS56262...

  11. [19]

    Azal Ahmad Khan, Michael Andrev, Muhammad Ali Murtaza, Sergio Aguilera, Rui Zhang, Jie Ding, Seth Hutchinson, and Ali Anwar. 2025. Safety-Aware Task Planning via Large Language Models in Robotics. arXiv:2503.15707. Preprint

  12. [20]

    Sanghoon Lee, Jiyeong Chae, and Kyung-Joon Park. 2025. Integrating ROS 2 and Physical AI: Architecture and Challenges. In2025 Sixteenth International Conference on Ubiquitous and Future Networks (ICUFN). IEEE, Piscataway, NJ, USA, 9–11. doi:10.1109/ICUFN65838.2025.11170038

  13. [21]

    Sanghoon Lee, Junha Kang, and Kyung-Joon Park. 2025. Dependency Chain Analysis of ROS 2 DDS QoS Policies: From Lifecycle Tutorial to Static Verification. arXiv:2509.03381. Preprint

  14. [22]

    Sanghoon Lee, Taehun Kim, Jiyeong Chae, and Kyung-Joon Park. 2025. Opti- mizing ROS 2 Communication for Wireless Robotic Systems. arXiv:2508.11366. Preprint

  15. [23]

    Sanghoon Lee, Hyung-Seok Park, Jiyeong Chae, and Kyung-Joon Park. 2025. Probabilistic Latency Analysis of the Data Distribution Service in ROS 2. arXiv:2508.10413. Preprint

  16. [24]

    Binqi Li, Yuan Zhu, Yingqi Zhao, Ke Cui, Xu Zhong, and Ke Lu. 2026. Fault Tolerance DDS Communications in Time-Sensitive Networking Using IEEE 802.1CB Redundancy Mechanisms.Journal of Systems Architecture175 (2026), 103756. doi:10.1016/j.sysarc.2026.103756

  17. [25]

    Steve Macenski, Francisco Martín, Ruffin White, and Jonatan Ginés Clavero. 2020. The Marathon 2: A Navigation System. In2020 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS). IEEE, Piscataway, NJ, USA, 2718–2725. doi:10.1109/IROS45743.2020.9341207

  18. [26]

    Zanchettin, and Stefano Zanero

    Federico Maggi, Davide Quarta, Marcello Pogliani, Mario Polino, Andrea M. Zanchettin, and Stefano Zanero. 2022.A Security Analysis of the Data Distribution Service (DDS) Protocol. Technical Report Trendmicro-2022-DDS. Trend Micro Research, Irving, TX, USA

  19. [27]

    Yuya Maruyama, Shinpei Kato, and Takuya Azumi. 2016. Exploring the Perfor- mance of ROS2. InProceedings of the 13th International Conference on Embed- ded Software (EMSOFT). ACM, New York, NY, USA, 1–10. doi:10.1145/2968478. 2968502

  20. [28]

    Qianyu Meng, Yanan Wang, Liyi Chen, Yihang Li, Wei Wu, Wenyuan Jiang, Qimeng Wang, Chengqiang Lu, Yan Gao, Yi Wu, and Yao Hu. 2026. Agent Harness for Large Language Model Agents: A Survey. Preprints.org. doi:10.20944/preprints202604.0428

  21. [29]

    Zizhao Mo, Huanle Xu, and Wing Cheong Lau. 2024. Optimal Resource Ef- ficiency with Fairness in Heterogeneous GPU Clusters. InProceedings of the 25th International Middleware Conference. ACM, New York, NY, USA, 36–48. doi:10.1145/3652892.3654792

  22. [30]

    NVIDIA. 2025. GR00T N1: An Open Foundation Model for Generalist Humanoid Robots. arXiv:2503.14734. Preprint

  23. [31]

    2015.Data Distribution Service (DDS), Version 1.4

    Object Management Group. 2015.Data Distribution Service (DDS), Version 1.4. Technical Report formal/2015-04-10. OMG, Needham, MA, USA

  24. [32]

    2020.Extensible and Dynamic Topic Types for DDS (XTypes), Version 1.3

    Object Management Group. 2020.Extensible and Dynamic Topic Types for DDS (XTypes), Version 1.3. Technical Report formal/2020-02-04. OMG, Needham, MA, USA

  25. [33]

    Linyue Pan, Lexiao Zou, Shuo Guo, Jingchen Ni, and Hai-Tao Zheng. 2026. Natural-Language Agent Harnesses. arXiv:2603.25723. Preprint

  26. [34]

    Hyung-Seok Park, Sanghoon Lee, Doosik Um, Hyunho Ryu, and Kyung-Joon Park. 2025. An Analytical Latency Model of the Data Distribution Service in ROS 2. InIEEE INFOCOM 2025 – IEEE Conference on Computer Communications. IEEE, Piscataway, NJ, USA, 1–10. doi:10.1109/INFOCOM55648.2...

  27. [35]

    Manos Pavlidakis, Giorgos Vasiliadis, Stelios Mavridis, Anargyros Argyros, Antony Chazapis, and Angelos Bilas. 2024. Guardian: Safe GPU Sharing in Multi-Tenant Environments. InProceedings of the 25th International Middleware Conference. ACM, New York, NY, USA, 14 pages. doi:10...

  28. [36]

    Phan, Radu Grosu, Nils Jansen, Nicola Paoletti, Scott A

    Dung T. Phan, Radu Grosu, Nils Jansen, Nicola Paoletti, Scott A. Smolka, and Scott D. Stoller. 2020. Neural Simplex Architecture. InNASA Formal Methods (NFM) (Lecture Notes in Computer Science, Vol. 12229). Springer, Cham, Switzer- land, 97–114. doi:10.1007/978-3-030-55754-6_6

  29. [37]

    Xue Qin, Simin Luan, John See, Cong Yang, and Zhijun Li. 2026. Harness- ing Embodied Agents: Runtime Governance for Policy-Constrained Execution. arXiv:2604.07833. Preprint, cs.RO

  30. [38]

    Robotec.ai. 2025. RAI: Flexible Agent Framework for Embodied AI. arXiv:2505.07532. Preprint. 7 Lee et al

  31. [39]

    Lui Sha. 2001. Using Simplicity to Control Complexity.IEEE Software18, 4 (2001), 20–28. doi:10.1109/MS.2001.936213

  32. [40]

    Steve Vestal. 2007. Preemptive Scheduling of Multi-Criticality Systems with Varying Degrees of Execution Time Assurance. InProceedings of the 28th IEEE Real-Time Systems Symposium (RTSS). IEEE, Piscataway, NJ, USA, 239–243. doi:10. 1109/RTSS.2007.35

  33. [41]

    Wilson, Abdullah Al Arafat, John Baugh, Ruozhou Yu, and Zhishan Guo

    Kurt M. Wilson, Abdullah Al Arafat, John Baugh, Ruozhou Yu, and Zhishan Guo. 2025. Physics-Informed Mixed-Criticality Scheduling for F1Tenth Cars with Preemptable ROS 2 Executors. In2025 IEEE 31st Real-Time and Embedded Technology and Applications Symposium (RTAS). IEEE, Pisca...

  34. [42]

    Yuxuan Zhao, Weikang Weng, Rob van Nieuwpoort, and Alexandru Uta. 2024. In Serverless, OS Scheduler Choice Costs Money: A Hybrid Scheduling Approach for Cheaper FaaS. InProceedings of the 25th International Middleware Conference. ACM, New York, NY, USA, 13 pages. doi:10.1145/3...

Pith tools

Reviewed June 27, 2026 · model on record in the stance chip above.