Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,13 @@ through the historical repositories below before its standalone V1.0.0 release:
- https://git.yukework.com/mlsys/cuda-optimized-skill

The historical repositories remain the source for pre-V1 development history.

Acknowledgements

CUDA Kernel Optimizer builds on the original cuda-optimized-skill created and
published by KernelFlow-ops. We thank Mark Liu and all upstream contributors
for the validation, benchmarking, profiling, and iterative optimization work
that provided the foundation for this standalone project.

- KernelFlow-ops: https://github.com/KernelFlow-ops
- Mark Liu: https://github.com/mark-liu
4 changes: 4 additions & 0 deletions tests/test_standalone_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ def test_origin_notice_preserves_provenance(self) -> None:
self.assertIn("git.yukework.com/mlsys/cuda-optimized-skill", notice)
self.assertIn("github.com/troycheng/cuda-optimized-skill", notice)
self.assertIn("MIT", notice)
self.assertIn("Acknowledgements", notice)
self.assertIn("https://github.com/KernelFlow-ops", notice)
self.assertIn("Mark Liu", notice)
self.assertIn("https://github.com/mark-liu", notice)

def test_public_tree_excludes_maintainer_history_and_dual_publisher(self) -> None:
self.assertFalse((ROOT / "maintainers").exists())
Expand Down