Skip to content

Commit 013c761

Browse files
committed
Fixed the CI issue of markdown
1 parent 6c7d856 commit 013c761

File tree

4 files changed

+21
-14
lines changed

4 files changed

+21
-14
lines changed

.github/workflows/markdown-link-check-config.json

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,17 @@
77
"pattern": "^https://github.com/yourusername/"
88
}
99
],
10-
"aliveStatusCodes": [200, 206, 999],
11-
"timeout": "10s",
10+
"httpHeaders": [
11+
{
12+
"urls": ["https://rocmdocs.amd.com/"],
13+
"headers": {
14+
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"
15+
}
16+
}
17+
],
18+
"timeout": "15s",
1219
"retryOn429": true,
13-
"retryCount": 5,
20+
"retryCount": 3,
1421
"fallbackRetryDelay": "30s",
15-
"aliveStatusCodes": [200, 206]
22+
"aliveStatusCodes": [200, 206, 999]
1623
}

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
*From beginner fundamentals to production-ready optimization techniques*
1313

14-
**Quick Navigation:** [🚀 Quick Start](#-quick-start)[📚 Modules](#-modules)[🐳 Docker Setup](#-docker-development)[📖 Documentation](SUMMARY.md)[🤝 Contributing](CONTRIBUTING.md)
14+
**Quick Navigation:** [🚀 Quick Start](#-quick-start)[📚 Modules](#-modules)[🐳 Docker Setup](#-docker-development)[🤝 Contributing](CONTRIBUTING.md)
1515

1616
---
1717

@@ -114,7 +114,7 @@ cd modules/module1/examples
114114

115115
**📈 Progressive Learning Path: 70+ Examples • 50+ Hours • Beginner to Expert**
116116

117-
**[📖 View Detailed Curriculum](SUMMARY.md)**
117+
**[ View Learning Modules](modules/)**
118118

119119
## 🛠️ Prerequisites
120120

@@ -306,13 +306,13 @@ make check-hip
306306
./docker/scripts/build.sh --clean --all
307307
```
308308

309-
**[📖 Full Troubleshooting Guide ](docs/troubleshooting.md)**
309+
**[� Need Help? Check Common Issues ](README.md#-troubleshooting)**
310310

311311
## 📖 Documentation
312312

313313
| Document | Description |
314314
|----------|-------------|
315-
| [**SUMMARY.md**](SUMMARY.md) | Complete curriculum overview and learning paths |
315+
| **README.md** | Main project documentation and getting started guide |
316316
| [**CONTRIBUTING.md**](CONTRIBUTING.md) | How to contribute to the project |
317317
| [**Docker Guide**](docker/README.md) | Complete Docker setup and usage |
318318
| [**Module READMEs**](modules/) | Individual module documentation |
@@ -327,13 +327,13 @@ We welcome contributions from the community! This project thrives on:
327327
- 🔧 **Optimizations**: Performance improvements and best practices
328328
- 🌐 **Platform Support**: Cross-platform compatibility improvements
329329

330-
**[📖 Contributing Guidelines →](CONTRIBUTING.md)****[🐛 Report Issues →](../../issues)****[💡 Request Features →](../../issues/new?template=feature_request.md)**
330+
**[📖 Contributing Guidelines →](CONTRIBUTING.md)****[🐛 Report Issues →](https://github.com/AIComputing101/gpu-programming-101/issues)****[💡 Request Features →](https://github.com/AIComputing101/gpu-programming-101/issues/new?template=feature_request.md)**
331331

332332
## 🏆 Community & Support
333333

334334
- 🌟 **Star this project** if you find it helpful!
335-
- 🐛 **Report bugs** using our [issue templates](../../issues/new/choose)
336-
- 💬 **Join discussions** in [GitHub Discussions](../../discussions)
335+
- 🐛 **Report bugs** using our [issue templates](https://github.com/AIComputing101/gpu-programming-101/issues/new/choose)
336+
- 💬 **Join discussions** in [GitHub Discussions](https://github.com/AIComputing101/gpu-programming-101/discussions)
337337
- 📧 **Get help** from the community and maintainers
338338

339339
## 📄 License
@@ -371,7 +371,7 @@ Stephen Shao, "GPU Programming 101: A Comprehensive Educational Project for CUDA
371371

372372
**Ready to unlock the power of GPU computing?**
373373

374-
**[🚀 Get Started Now](#-quick-start)****[📚 View Curriculum](SUMMARY.md)****[🐳 Try Docker](docker/README.md)**
374+
**[🚀 Get Started Now](#-quick-start)****[📚 View Modules](modules/)****[🐳 Try Docker](docker/README.md)**
375375

376376
---
377377

modules/module1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ After completing this module:
110110

111111
## Additional Resources
112112
- [CUDA Programming Guide](https://docs.nvidia.com/cuda/cuda-c-programming-guide/)
113-
- [HIP Programming Guide](https://rocmdocs.amd.com/en/latest/Programming_Guides/HIP-GUIDE.html)
113+
- [HIP Programming Guide](https://rocmdocs.amd.com/en/latest/Programming_Guides/HIP/index.html)
114114
- [GPU Performance Best Practices](https://docs.nvidia.com/cuda/cuda-c-best-practices-guide/)
115115

116116
---

modules/module1/examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ export HIP_PLATFORM=nvidia
337337
## Additional Resources
338338

339339
- [CUDA Programming Guide](https://docs.nvidia.com/cuda/cuda-c-programming-guide/)
340-
- [HIP Programming Guide](https://rocmdocs.amd.com/en/latest/Programming_Guides/HIP-GUIDE.html)
340+
- [HIP Programming Guide](https://rocmdocs.amd.com/en/latest/Programming_Guides/HIP/index.html)
341341
- [GPU Performance Guidelines](https://docs.nvidia.com/cuda/cuda-c-best-practices-guide/)
342342

343343
## Exercises

0 commit comments

Comments
 (0)