Rough estimates of the cost of implementing the ONNX operators listed as unsupported in the operator tracking issue, based on the ONNX operator specs. Last updated: 2026-07-12.
- Complexity is Small / Medium / Large, judging spec surface area
Rough estimates of the cost of implementing the ONNX operators listed as unsupported in the operator tracking issue, based on the ONNX operator specs. Last updated: 2026-07-12.
Goal: find ONNX models that make cargo run -p rten-cli -r -- <model> panic or crash
(not return a clean error). A panic where ONNX Runtime returns a clean error still counts
as a robustness bug. Clean Err returns from rten do not count.
Harness: /tmp/rten-fuzz/ — harness.py builds models, runs ORT (validity check) then
rten, and flags crashes. Binary: target/release/rten.
Review the code for the ocrs-cli crate which is a CLI tool for OCR. Then make a plan to implement a new feature which will allow processing images taken from the system clipboard. The feature should be behind a clipboard Cargo feature which is disabled by default. To read from the clipboard, the arboard crate (https://docs.rs/arboard/latest/arboard/) should be used.
`Implement the following plan:
| #!/usr/bin/env python3 | |
| import argparse | |
| import json | |
| import os | |
| import sys | |
| import time | |
| from datetime import datetime, timezone | |
| from typing import List, Dict, Any, Optional |
| <html> | |
| <body> | |
| <div id="app"></div> | |
| <script type="importmap"> | |
| { | |
| "imports": { | |
| "preact": "https://unpkg.com/preact@10.25.4/dist/preact.module.js", | |
| "preact/hooks": "https://unpkg.com/preact@10.25.4/hooks/dist/hooks.module.js" | |
| } | |
| } |
| import getpass | |
| import json | |
| import re | |
| import sys | |
| import requests | |
| GROUP_URL_PATTERN = "https://hypothes.is/groups/([^/]+)/.*" | |
| api_token = getpass.getpass( |
| # Analysis of Hypothesis Python app routes as part of | |
| # https://github.com/hypothesis/playbook/issues/1797#issuecomment-2397242000. | |
| import os | |
| import ast | |
| import sys | |
| def find_py_files(root_dir): | |
| excluded_dirs = ["node_modules", "build", "test", "tests", "third_party"] |
| # Script to fetch and print the transcript for a YouTube video using the | |
| # YouTube Data API v3. | |
| # | |
| # 1. Create a project in the Google API Console | |
| # 2. Enable the YouTube Data API v3 for the new project | |
| # 3. Create credentials for a "Desktop" OAuth client. Download the JSON file | |
| # containing the credentials at the end of the setup process. | |
| # 4. Create a new virtualenv and install dependencies with: | |
| # | |
| # ``` |
| #include <algorithm> | |
| #include <chrono> | |
| #include <iostream> | |
| #include <iterator> | |
| #include <random> | |
| #include <vector> | |
| #include <Accelerate/Accelerate.h> | |
| #include <cblas.h> |