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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.2.0] - 2026-05-25

### Removed
- Repository-local AI control artifacts (`openspec/`, `.claude/`, `AGENTS.md`, `CLAUDE.md`, `.github/copilot-instructions.md`)
- Optional CV-CUDA / TensorRT / GStreamer adapter surfaces and their dedicated tests
- Benchmark executable target plus GitHub Pages changelog/blog surfaces
- `vitepress-plugin-llms` AI documentation plugin

### Changed
- Reduced GitHub Pages navigation to the core guide, architecture, and API paths
- Consolidated change history to this single root `CHANGELOG.md`
- Fixed GitHub Pages URL from `lessup.github.io` to `aicl-lab.github.io`

## [1.1.0] - 2026-04-30

Expand Down
3 changes: 1 addition & 2 deletions PERFORMANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ config.numStreams = 4;

```cpp
// Calculate based on image size and operator count
// Rule of thumb: 2-3 frames worth of intermediate buffers
// Rule of thumb: 2-3 frames worth of pinned intermediate buffers
config.pinnedPoolSize = 3 * width * height * channels * sizeof(uint8_t);
config.devicePoolSize = 3 * numOperators * width * height * channels * sizeof(float);
```

### 3. Reuse Pipeline Instances
Expand Down
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Mini-ImagePipe

[![CI](https://github.com/AICL-Lab/mini-image-pipe/actions/workflows/ci.yml/badge.svg)](https://github.com/AICL-Lab/mini-image-pipe/actions/workflows/ci.yml)
[![Docs](https://img.shields.io/badge/Docs-GitHub%20Pages-blue?logo=github)](https://lessup.github.io/mini-image-pipe/)
[![Docs](https://img.shields.io/badge/Docs-GitHub%20Pages-blue?logo=github)](https://aicl-lab.github.io/mini-image-pipe/)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)

English | [简体中文](README.zh-CN.md)
Expand Down Expand Up @@ -136,19 +136,18 @@ mini-image-pipe/

## Documentation

- GitHub Pages: <https://lessup.github.io/mini-image-pipe/>
- GitHub Pages: <https://aicl-lab.github.io/mini-image-pipe/>
- Architecture: `docs/architecture/`
- Guide: `docs/guide/`
- API reference: `docs/api/`

GitHub Pages no longer publishes a separate changelog section. Release history lives only in the
repository root at [`CHANGELOG.md`](CHANGELOG.md).

## Contributor Note
## Contributing

This repository intentionally avoids repository-local AI control frameworks and spec orchestration
layers. Keep changes grounded in the codebase, the existing build/test commands, and the root
documentation.
Contributions via issues and pull requests are welcome. See [`CONTRIBUTING.md`](CONTRIBUTING.md) for
build instructions and coding conventions.

## License

Expand Down
9 changes: 4 additions & 5 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Mini-ImagePipe

[![CI](https://github.com/AICL-Lab/mini-image-pipe/actions/workflows/ci.yml/badge.svg)](https://github.com/AICL-Lab/mini-image-pipe/actions/workflows/ci.yml)
[![Docs](https://img.shields.io/badge/Docs-GitHub%20Pages-blue?logo=github)](https://lessup.github.io/mini-image-pipe/)
[![Docs](https://img.shields.io/badge/Docs-GitHub%20Pages-blue?logo=github)](https://aicl-lab.github.io/mini-image-pipe/)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)

[English](README.md) | 简体中文
Expand Down Expand Up @@ -135,18 +135,17 @@ mini-image-pipe/

## 文档

- GitHub Pages:<https://lessup.github.io/mini-image-pipe/>
- GitHub Pages:<https://aicl-lab.github.io/mini-image-pipe/>
- 架构文档:`docs/architecture/`
- 工程指南:`docs/guide/`
- API 参考:`docs/api/`

GitHub Pages 不再单独发布 Changelog 页面。项目变更历史仅保留在根目录
[`CHANGELOG.md`](CHANGELOG.md)。

## 贡献说明
## 贡献

本仓库不再维护仓库内 AI 控制框架或 spec 编排层。后续变更请直接围绕代码、现有构建命令、
测试命令与根文档展开。
欢迎通过 Issue 和 Pull Request 参与贡献。构建方式与代码规范详见 [`CONTRIBUTING.md`](CONTRIBUTING.md)。

## 许可证

Expand Down
195 changes: 0 additions & 195 deletions docs/.vitepress/components/BenchmarkTable.vue

This file was deleted.

88 changes: 0 additions & 88 deletions docs/.vitepress/components/BlogCard.vue

This file was deleted.

Loading
Loading