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
- Wait for user input instead of continuing automatically
- Prompt for GitHub token with interactive input
- Try up to 2 additional times if user tries to skip
- Show encouraging messages about community benefit
- Test token immediately when entered
- Only continue without telemetry after 3 attempts
- Update documentation to reflect interactive setup process
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
Copy file name to clipboardExpand all lines: docs/src/tutorials/autotune.md
+20-16Lines changed: 20 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -308,30 +308,34 @@ By default, autotune results are shared with the LinearSolve.jl community to hel
308
308
309
309
### GitHub Authentication for Telemetry
310
310
311
-
When telemetry is enabled, the system will check for GitHub authentication:
311
+
When telemetry is enabled, the system will prompt you to set up GitHub authentication if not already configured:
312
312
313
313
```julia
314
-
# This will show setup instructions if GITHUB_TOKEN not found
314
+
# This will prompt for GitHub token setup if GITHUB_TOKEN not found
315
315
results =autotune_setup(telemetry =true)
316
316
```
317
317
318
-
**Quick Setup (30 seconds):**
318
+
The system will wait for you to create and paste a GitHub token. This helps the community by sharing performance data across different hardware configurations.
319
319
320
-
1.**Create GitHub Token**: Open [https://github.com/settings/tokens?type=beta](https://github.com/settings/tokens?type=beta)
0 commit comments