ci(deps): bump actions/cache from 4 to 5#6
Closed
dependabot[bot] wants to merge 48 commits into
Closed
Conversation
实现内容: - 内存管理层: DeviceBuffer, MemoryManager, StreamManager - 像素操作: 反色、灰度化、亮度调整 - 卷积操作: 高斯模糊、Sobel 边缘检测 (Shared Memory 优化) - 直方图: 计算和均衡化 (原子操作 + 并行规约) - 图像缩放: 双线性插值、最近邻插值 - 流水线处理: CUDA Streams 异步并行 - 完整的单元测试和示例程序
新增功能: - 形态学操作: 腐蚀、膨胀、开运算、闭运算、梯度、顶帽、黑帽 - 阈值处理: 全局阈值、自适应阈值、Otsu 自动阈值 - 颜色空间: RGB/HSV/YUV 转换、通道分离与合并 - 性能基准测试程序 新增文件: - include/gpu_image/morphology.hpp, threshold.hpp, color_space.hpp - src/morphology.cu, threshold.cu, color_space.cu - tests/test_morphology.cpp, test_threshold.cpp, test_color_space.cpp - benchmarks/benchmark_main.cpp
- 卷积引擎: 切换到 shared memory 版本并支持边界模式参数传递 - 直方图均衡化: 添加 cdfMin 等于总像素数的边界情况处理,避免除零错误
… MemoryManager pool lifecycle, kernel_helpers, RGB-Lab/perspective/separable-conv/bicubic kernels, ImageIO with stb, modernize CMakeLists
- README.md is now English (default) - README.zh-CN.md is Chinese - Standardized language switcher links in both files
- Add SEO metadata (url, baseurl, author, repository) - Add jekyll-seo-tag plugin - Add kramdown GFM + rouge config - Add layout defaults - Add exclude list for source/build files - Set show_downloads: false - Set cancel-in-progress: true in pages.yml
Check for nvcc before enabling CUDA so configuration errors are explicit instead of cryptic.
Fix geometric boundary sampling, remove shared convolution kernel state across streams, and add missing parameter validation. Strengthen regression tests, make local CUDA builds compatible with older NVCC, and ensure CI runs the test suite with aligned docs and formatting config.
- Add docs/ directory with complete bilingual documentation (EN/ZH) - quickstart.md / quickstart.zh-CN.md - 5-minute quick start - installation.md / installation.zh-CN.md - detailed setup guide - architecture.md / architecture.zh-CN.md - design overview - performance.md / performance.zh-CN.md - optimization guide - faq.md / faq.zh-CN.md - common questions - api/ / api.zh-CN/ - complete API reference (10 modules) - examples/ - extended tutorials - Refactor changelog/ with professional bilingual format - Add HISTORY.md as development archive summary - Rewrite all changelog entries with English/Chinese dual language - Update README.md with enhanced content and documentation links - Update GitHub Pages workflow to include docs/ Part of release v2.0.0 preparation
…ention - Move requirements to specs/product/gpu-image-processing-requirements.md - Move design to specs/rfc/0001-gpu-image-processing-design.md - Move tasks to specs/rfc/0001-gpu-image-processing-tasks.md - Remove legacy .kiro directory - Add specs/README.md with navigation guide Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
- Move installation and quickstart to docs/setup/ - Move performance, faq, examples to docs/tutorials/ - Move architecture docs to docs/architecture/ - Update docs/README.md and README.zh-CN.md with new paths - Add specs links to documentation entry pages - Remove empty directories (advanced, guides, examples.zh-CN) Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
- Add SDD philosophy declaration and directory context - Define 4-step AI agent workflow (Review, Spec-First, Implement, Test) - Add code generation rules for spec compliance - Update CONTRIBUTING.md to reference new specs location - Clarify specs vs documentation separation Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
- Ensure README.md is English default with Chinese link - Update documentation links to reflect new structure - Clean up root markdown files Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
- Update pages.yml workflow for new docs structure - Update _config.yml for Jekyll configuration - Update CHANGELOG.md and changelog/ files Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
- Add DOCUMENTATION_REORGANIZATION_SUMMARY.md with migration guide - Add DOCUMENTATION_OVERHAUL_SUMMARY.md - Add PAGES_OPTIMIZATION_SUMMARY.md - Add RELEASE_NOTES.md and RELEASE_v2.1.0.md - Add create_release.sh script - Add _sass/ and assets/ directories Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
Apply clang-format to fix CI format check failures across all C++/CUDA source files to comply with the project's code style.
- Fix clang-format violation in cuda_error.cpp (match clang-format-14 style) - Update actions/checkout from v4 to v6 in both CI jobs - Update actions/configure-pages from v5 to v6 - Update actions/upload-pages-artifact from v3 to v5 - Update actions/deploy-pages from v4 to v5 - Remove invalid 'enablement' parameter from configure-pages action These updates align with dependabot proposals and resolve CI failures. Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
- Remove actions/configure-pages@v5 which causes TypeError - The action appears to have a bug that prevents Pages from building - Jekyll build can proceed without the configure-pages step Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
- Fix actions/checkout v6 -> v4 - Fix actions/upload-pages-artifact v5 -> v3 - Fix actions/deploy-pages v5 -> v4
- Add [[nodiscard]] to StreamManager::acquireStream() - Add thread-safety documentation for StreamManager - Add error handling in StreamManager::destroyStreams() destructor - Add alpha range validation [0,1] for blend() function - Add upper bound (31) for bilateral filter kernel size
Bug fixes: - Add noexcept to DeviceBuffer::release() for safe destructor use - Add noexcept to PipelineProcessor::destroyStreams() - Add error handling in ImageProcessor destructor - Handle cudaFree and cudaStreamDestroy errors silently in destructors Docs improvements: - Add performance benchmark table to index.md - Add Discussions link to navigation - Improve tagline and description - Add project stats badges - Add API Reference button on home page
- Add kernel size upper bound (31) check in boxFilter - Add strength validation in sharpen function - Add input validation in resizeByScale and resizeFit - Fix integer overflow risk in arithmetic operations by using size_t - Add overflow check before casting to int for kernel launches
Format code to pass CI clang-format check.
- Introduced RFC 0001 detailing the architecture and design of a CUDA-based high-performance image processing library. - Added comprehensive task list for implementation phases, covering memory management, pixel operations, convolution, histogram calculation, image scaling, and high-level API. - Established testing specifications including unit tests and property-based tests to ensure correctness properties. - Created README for testing specifications outlining the dual testing approach and BDD feature files.
- Added Step 10: SMART Requirements Validation to assess functional requirements against SMART criteria. - Introduced Step 11: Holistic Quality Assessment to evaluate document flow, dual audience effectiveness, and compliance with BMAD principles. - Created Step 12: Completeness Validation to ensure no template variables remain and all sections are complete. - Developed Step 13: Validation Report Complete to summarize findings and present actionable next steps to the user. - Established a structured workflow architecture with clear execution protocols and mandatory sequences for each validation step.
….0 compatibility The 'auto' color_scheme value is not supported in Just the Docs v0.9.0, causing Jekyll build failures with 'File to import not found or unreadable: ./color_schemes/auto'. Changed to 'light' (default theme) to resolve GitHub Pages workflow failure. Fixes GitHub Actions run 24841396343 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Unified version number to 2.1.0 across all files - Locked stb dependency to specific commit for reproducibility - Fixed .gitignore conflict with .vscode files - Simplified CI workflow by removing unnecessary CMakePresets checks - Added CMakePresets.json for standardized build configurations - Added VS Code configuration (extensions.json, settings.json) - Updated copilot-instructions.md with project-specific guidance - Removed specs.legacy/ directory (migrated to openspec/) - Removed redundant changelog documentation files - Added .omc/ to .gitignore (runtime state files)
## Changes ### Configuration - Add CLAUDE.md for Claude Code integration - Update project-memory.json with build commands and conventions - Fix AGENTS.md copilot-instructions.md sync status ### Code Quality - Add cudaFree error handling in memory_manager.cpp - Format test code with clang-format ### Documentation - Consolidate architecture diagram references to openspec/specs/architecture.md - Archive changelog/ directory to changelog.archive/ ### GitHub - Update repository description and topics - Set homepage URL to GitHub Pages
- Remove all BMAD method skills (41 skills, ~2.2MB) - Delete _bmad/ and _bmad-output/ directories - Delete changelog.archive/ (historical changelogs) - Delete openspec/changes/archive/ (archived proposals) - Remove redundant docs: project-context.md, README.md - Update AGENTS.md: simplify OpenSpec workflow, fix directory references - Update GitHub repo description with clearer value proposition Total reduction: ~2.5MB of redundant documentation and skills
…I-navigability This commit introduces significant architectural depth improvements: ## New Modules - **ExecutionContext**: Unified execution policy and memory management - **ImageAllocator**: Centralized image buffer allocation with optional pooling - **ImageOperator**: Base interface for polymorphic operators with pipeline support - **OperatorPipeline**: Chain multiple operators with automatic buffer management - **OperatorRegistry**: Runtime operator discovery and creation by name ## Key Features - ExecutionPolicy hides CUDA streams (Sync/Async/Batch modes) - PipelineBuilder for fluent processing chain construction - Thread-safe memory pooling using std::atomic - [[nodiscard]] attributes on all return-value methods - Backward compatible: existing Operator static methods unchanged ## API Improvements - recycleToPool() replaces release() with clearer semantics - ResizeOperator::byScale() and byDimensions() named constructors - PipelineBuilder returns invalid image instead of throwing on missing input ## Files Changed - 16 modified files - 9 new files (headers, sources, tests, docs) - +1,800 lines of new code - 35 new test cases ## Documentation - CONTEXT.md: Domain model and architectural depth analysis - ADR-0001: Architecture decision record - ARCHITECTURE_REFACTORING.md: Migration guide
- Migrate documentation system from Jekyll + Just the Docs to VitePress - Add NVIDIA green (#76B900) themed design with dark mode support - Integrate Mermaid diagrams for architecture visualization - Add LLMs.txt plugin for AI-friendly documentation - Create bilingual (EN/ZH) documentation with 48 markdown files - Add performance benchmarks with comparison charts - Add academic references with BibTeX citations - Create GitHub Actions workflow for automatic deployment - Add changelog sync script for version tracking Breaking changes: - Remove old Jekyll configuration and themes - Restructure documentation directory layout 🤖 Generated with [Claude Code](https://claude.ai/code)
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Author
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
Author
|
OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting If you change your mind, just re-open this PR and I'll resolve any conflicts on it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps actions/cache from 4 to 5.
Release notes
Sourced from actions/cache's releases.
... (truncated)
Changelog
Sourced from actions/cache's changelog.
... (truncated)
Commits
27d5ce7Merge pull request #1747 from actions/yacaovsnc/update-dependencyf280785licensed changes619aeb1npm run build generated dist filesbcf16c2Update ts-http-runtime to 0.3.56682284Merge pull request #1738 from actions/prepare-v5.0.4e340396Update RELEASES8a67110Add licenses1865903Update dependencies & patch security vulnerabilities5656298Merge pull request #1722 from RyPeck/patch-14e380d1Fix cache key in examples.md for bun.lockDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)