You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- .github/pull_request_template.md -->
## 📌 Description
FlashInfer's API Logging feature was enabled in #2108, but only
decorated a small number of APIs with `@flashinfer_api`.
Current PR adds the decorator to a large number of existing APIs for
comprehensive coverage.
<!-- What does this PR do? Briefly describe the changes and why they’re
needed. -->
## 🔍 Related Issues
<!-- Link any related issues here -->
## 🚀 Pull Request Checklist
Thank you for contributing to FlashInfer! Before we review your pull
request, please make sure the following items are complete.
### ✅ Pre-commit Checks
- [x] I have installed `pre-commit` by running `pip install pre-commit`
(or used your preferred method).
- [x] I have installed the hooks with `pre-commit install`.
- [x] I have run the hooks manually with `pre-commit run --all-files`
and fixed any reported issues.
> If you are unsure about how to set up `pre-commit`, see [the
pre-commit documentation](https://pre-commit.com/).
## 🧪 Tests
- [x] Tests have been added or updated as needed.
- [x] All tests are passing (`unittest`, etc.).
## Reviewer Notes
<!-- Optional: anything you'd like reviewers to focus on, concerns, etc.
-->
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit
* **New Features**
* Expanded public API: many attention, cascade, pod, page, sparse,
quantization, rope, sampling, decode and GEMM entry points are now
exposed.
* Added high-level FP4/FP8 quantization utilities, new sampling
functions (speculative, top-k/top-p, renorm), and RoPE transforms with
precomputed-cache & FP8 paths.
* **Changes**
* layernorm now accepts additional parameters (gemma, beta, eps).
* **Documentation**
* Updated logging/API doc link in README.
<sub>✏️ Tip: You can customize this high-level summary in your review
settings.</sub>
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -181,7 +181,7 @@ export FLASHINFER_LOGLEVEL=3
181
181
export FLASHINFER_LOGDEST=stdout
182
182
```
183
183
184
-
For detailed information about logging levels, configuration, and advanced features, see [LOGGING.md](LOGGING.md).
184
+
For detailed information about logging levels, configuration, and advanced features, see [Logging](https://docs.flashinfer.ai/logging.html) in our documentation.
0 commit comments