pegainfer-project/pegainfer - Open Source PR Review Scorecard

Pure Rust + CUDA LLM inference engine — no PyTorch, OpenAI-compatible, serves Qwen3 to Kimi-K2

C-Rank Grade: A (Welcoming) - 58/100

External PR Merge Rate: 7%

Response Time: 12h

First Timer Success: -

Frequently Asked Questions

Is pegainfer-project/pegainfer welcoming to first-time open-source contributors?

pegainfer-project/pegainfer has a recorded first-timer success rate of 0.0%. Repositories ranked A typically provide actionable feedback during code reviews and actively nurture new community contributors.

How fast can I expect code review feedback on my pull request?

Maintainers in pegainfer-project/pegainfer respond to incoming external pull requests in approximately 12.1 hours on average. Keeping PRs focused on single tasks and ensuring tests pass helps maintainers review faster.

What does the 58.2 C-Rank™ score (A Tier) represent?

The C-Rank™ system evaluates GitHub projects on a 0–100 scale using real data: PR merge rates, review turnaround time, active maintainer presence, and first-time contributor success. A score of 58.2 places pegainfer-project/pegainfer in the A tier.

What is the external contributor pull request merge rate for pegainfer-project/pegainfer?

The external contributor pull request merge rate for pegainfer-project/pegainfer is 7.1%, based on public PR activity from non-core contributors.

Are there Good First Issues available in pegainfer-project/pegainfer?

pegainfer-project/pegainfer currently has 4 active issue(s) tagged with beginner-friendly labels like "good first issue", "beginner", or "up-for-grabs".

pegainfer-project
pegainfer-project/pegainferAWelcoming657
GitHub
Back to Explorer
pegainfer-project

pegainfer-project/pegainfer

657
AWelcoming(58/100)Rust

Pure Rust + CUDA LLM inference engine — no PyTorch, OpenAI-compatible, serves Qwen3 to Kimi-K2

Compare
Jump to:

AI Maintainer Review Guidelines

Review Persona

Active Open-Source Maintainer

Warmth Score
7.8/10
Patience Score
8.2/10
Nitpick Rate
20%

Active maintainer team in pegainfer-project/pegainfer welcoming community pull requests and bug fixes.

Top PR Submission Do's

  • Ensure code complies with repository style conventions
  • Keep PRs focused and well-documented

Top PR Friction Pitfalls (Don'ts)

  • Do not submit unlinked PRs without context
  • Do not break existing automated test suites
Response Velocity
12 hours
Standard maintainer review cycle

Average Response Latency

Tracks hours until a maintainer leaves a review, comment, or PR response.

Merge Efficiency
7.1%
Selective PR acceptance rate

External Acceptance Rate

Percentage of community pull requests successfully merged into main.

First-Timer Success
0.0%
No first-timer merges recorded in window

First PR Conversion

Rate at which developers submitting their first repository PR succeed.

Active Maintainers
4 core
Small core review team
Diagnostic Health HUD
7.1%
Merge Gauge
0.0%
1st-Timer
Community Vibe24/100

Embed C-Rank Badge

Show contributors that your repository actively reviews and merges external pull requests.

GetMerged C-Rank badge for pegainfer-project/pegainfer
[![GetMerged C-Rank](https://getmerged.abhishekco.de/api/badge/pegainfer-project/pegainfer)](https://getmerged.abhishekco.de/pegainfer-project/pegainfer?utm_source=github&utm_medium=badge)

Active Good First Issues (5)

View on GitHub

Problem Gemma 4 still launches on the legacy engine contract (LaunchedEngine::Handle + per-request TokenEvent), while Qwen3 and pegainfer-sim already speak the step contract (LaunchedEngine::Stepped). The two generations currently coexist in pegainfer-frontend (bridge.rs vs bridge/stepped.rs). Every remaining Handle line keeps that dual stack alive. Gemma 4 is a good next cut: single GPU, one scheduler, no LoRA / TP / EP / P/D, and prefix cache is resolved inside the engine rather than via frontend KvPrefix. Today: pegainfer-gemma4/src/model_line.rs returns LaunchedEngine::Handle. pegainfer-gemma4/src/engine.rs owns its own thread, blocking_recvs when idle, and emits TokenEvent from admit / mixed gather / async-prefill join / chunked walk / decode. Cancellation is TokenSink send-failure / channel close, not RequestControl::abort. There is no Scheduler::load() occupancy feed (running / waiting / KV pages). Related: Gemma 4 roadmap #758. Contract source of truth: docs/subsystems/fronte

📅 Opened Aug 24, 2026💬 0 comments
Quality: 90/100Contribute

Problem Gemma 4's checkpoint-backed gates are valuable but have no continuous compile contract or checked-in execution manifest. At 69c4e149: pegainfer-gemma4 has 19 ignored library gates: 8 in src/engine.rs and 11 in src/serve_oracle.rs. The gates cover HF numeric parity, long/window context, generation, mixed admission, async prefill, prefix cache, CUDA Graph replay, cancellation, and lifecycle behavior. GitHub CI does not build or Clippy-check pegainfer-gemma4 --features gemma4 --all-targets. No checked-in runner names the maintained gate set. Engine gates document --test-threads=1, but a generic --ignored command does not encode the suite membership or prove that every expected gate still exists. The tests currently fail closed when PEGAINFER_TEST_MODEL_PATH is absent and pin their checkpoint/fixtures. The decay risk is that feature-only test code can stop compiling or individual gates can fall out of the informal command set. Related model roadmap: #758. Direction Add feature-on

📅 Opened Aug 20, 2026💬 0 comments
Quality: 90/100Contribute

Problem The HD256 and HD512 QK/RoPE smoke suites maintain a second Rust implementation of substantial GPU semantics. At 69c4e149: pegainfer-kernels/tests/hd256_qk_rope_plain_smoke.rs is 783 lines and has four closed-form tests covering RMSNorm, RoPE pairing/tail behavior, paged-KV address calculation, and pool writes. pegainfer-kernels/tests/hd512_qk_rope_smoke.rs is 951 lines and has three analogous closed-form tests. Both files independently define helpers such as inv_rms, normed, expected_prep, expected_full, expected_pool, and assert_pool. These tests have value, but seven large host-side reconstructions create a parallel implementation that must evolve with the CUDA contract. A shared specification mistake can also be repeated in both the kernel and its local oracle. The newer row-offset tests are a better shape: compare the offset GPU arm against the same production GPU path at zero offset, then verify untouched prefix/suffix/KV sentinels. They should remain. Direction Keep a s

📅 Opened Aug 20, 2026💬 1 comment
Quality: 90/100Contribute

Summary Under the PerToken batch-invariance policy, each bucket-N decode CUDA graph bakes ~36 layers × 6 projections × N cublasGemmEx nodes, because the PerToken GEMM oracle (gemm_per_token_cuda, openinfer-kernels/csrc/shared/linear.cu:772) loops one GEMM per row. Graph-exec memory therefore grows linearly with the bucket size; across all 36 decode buckets this sums to ~1.8 GB for Qwen3-4B (measured on RTX 5070 Ti 16GB via cuMemGetInfo probes during a full bucket sweep: drain starts around bucket 56, ~-134 MB by bucket 224, OOM near bucket 232 with util=0.90). The KV-cache memory budget (util, default 0.90) never reserves this per-policy graph memory, so PerToken + CUDA graph can OOM — deterministically at startup once decode graphs are pre-captured, or mid-serving when capture is lazy. What is unaffected Tuned (production default) and Pin policies: their graphs have O(layers) nodes, measured flat at ~2 MB/bucket across the sweep. Eager (non-graph) decode. Proposed directions Bu

📅 Opened Jul 29, 2026💬 2 comments
Quality: 90/100Contribute

Context OpenInfer pins FlashInfer v0.6.14 at 19f1a41e6b21f0c422d775e377b6fdf9a1fc9d23. Qwen3.5 prefill currently runs a seven-stage Triton-AOT Gated Delta Rule pipeline generated from openinfer-kernels/tools/triton/gated_delta_rule_chunkwise_kernels.py. This is the Qwen3.5 model line's only build-time Triton dependency. The pinned FlashInfer tree now has a fused chunk_gated_delta_rule prefill backend for the architectures relevant to current Qwen3.5 work: SM100: flashinfer#3001 SM90: flashinfer#3477 SM120: flashinfer#3479 Follow-up prefill work: flashinfer#3742 FlashInfer's own benchmark matrix includes Qwen3.5 4B/9B (Hq=Hk=16, Hv=32), 27B (Hv=48), and larger-family head configurations. Its tests cover the 16/16/32 GVA shape used by 4B and 9B. This makes an upstream-backed migration plausible. It is not a drop-in wrapper. Integration constraints 1. The pinned implementation is CuTe DSL, not a reusable C++ launcher All pinned SM90/SM100/SM120 prefill backends live under flashinfer/gdn

📅 Opened Jul 16, 2026💬 9 comments
Quality: 90/100Contribute
Looking for more Rust beginner tasks?Explore Rust GFI

Contributor Community Vibe Feedback

Rate what actually matters after opening a pull request here.

Have you contributed to this repo?

Rate your first-hand PR experience (review speed, maintainer responsiveness, and onboarding ease) to help other contributors.

3 ratings required
Maintainer helpfulness
Review speed
Beginner friendliness

Contributor Compatibility & Review Speed Analysis for pegainfer-project/pegainfer

When evaluating whether to contribute to pegainfer-project/pegainfer, response velocity and maintainer engagement are crucial. GetMerged continuously tracks pull request trajectories, first-comment latency, and code review rounds to help developers avoid submitting pull requests to backlogged repositories.

Currently, maintainers of pegainfer-project/pegainfer acknowledge new external contributions in approximately 12 hours. Out of all submitted pull requests from non-core authors in the last 180-day window, 7.1% were successfully merged into the primary branch.

Frequently Asked Questions - Contributing to pegainfer-project/pegainfer

01

Is pegainfer-project/pegainfer welcoming to first-time open-source contributors?

pegainfer-project/pegainfer has a recorded first-timer success rate of 0.0%. Repositories ranked Welcoming typically provide actionable feedback during code reviews and actively nurture new community contributors.

02

How fast can I expect code review feedback on my pull request?

The initial maintainer response time averages ~12 hours. Keeping PRs scoped to single concerns and ensuring CI checks succeed will optimize review turnaround.

03

What does the 58.2 C-Rank™ score represent?

The C-Rank™ index scores repositories on a 0 to 100 scale using an objective formula: external PR merge rates, initial response speed, active maintainer count, and first-time contributor retention. A score of 58.2 places pegainfer-project/pegainfer in the Welcoming tier.

04

What is the external contributor pull request merge rate for pegainfer-project/pegainfer?

The external pull request merge rate is 7.1%. GetMerged isolates non-core community contributions so external developers get an accurate benchmark of PR acceptance probability.

05

Are there beginner Good First Issues open in pegainfer-project/pegainfer?

Yes, pegainfer-project/pegainfer currently has 4 active issue(s) tagged with beginner-friendly labels. You can inspect these directly from the repository issues tab.

GetMerged C-Rank™ Indexing Standard

All metrics displayed for pegainfer-project/pegainfer are automatically retrieved via the public GitHub API and recalculated daily. Insider pull requests submitted by repository owners or organization members are excluded from merge rate calculations to preserve objective external contributor statistics.