https://github.com/openvinotoolkit/npu_plugin_btc
https://github.com/openvinotoolkit/npu_plugin_btc
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/openvinotoolkit/npu_plugin_btc
- Owner: openvinotoolkit
- License: apache-2.0
- Archived: true
- Created: 2023-02-17T15:14:25.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-11-11T20:06:21.000Z (over 1 year ago)
- Last Synced: 2025-07-01T20:04:01.191Z (12 months ago)
- Language: C++
- Size: 33.2 KB
- Stars: 1
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# PROJECT NOT UNDER ACTIVE MANAGEMENT #
This project will no longer be maintained by Intel.
Intel has ceased development and contributions including, but not limited to, maintenance, bug fixes, new releases, or updates, to this project.
Intel no longer accepts patches to this project.
If you have an ongoing need to use this project, are interested in independently developing it, or would like to maintain patches for the open source software community, please create your own fork of this project.
# BitCompactor compression/decompression model (C/C++)
## How to build:
* Create the build/ directory and move into it.
* Enter:
```bash
cmake ..
make -j8
```
## Manifest:
.
|-- README <- this readme file
|-- include
| |-- utils
| | |-- utils.h <- SafeMem functions for klocwork
| | |-- logger.h <- Simple logger class declaration
| |-- bitCompactor.h <- BitCompactor model (C++ class BitCompactor)
|-- src
| |-- utils
| | |-- logger.cpp <- Simple logger class implementation
| `-- bitCompactor.cpp <- BitCompactor model (C++ class BitCompactor implementation)
`- CMakeLists.txt <- Example of CMakeLists.txt to build a shared library