Skip to content

Commit

Permalink
update release v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lovemefan committed Oct 7, 2024
1 parent ed4ddc5 commit cdf29e3
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 26 deletions.
3 changes: 1 addition & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.12)
project(SenseVoice.cpp VERSION 1.2.0 LANGUAGES CXX)
project(SenseVoice.cpp VERSION 1.3.0 LANGUAGES CXX)

set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib CACHE STRING "")
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib CACHE STRING "")
Expand All @@ -8,7 +8,6 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin CACHE STRING "")
set(CMAKE_CXX_STANDARD 11)



if(NOT CMAKE_BUILD_TYPE)
message(STATUS "No CMAKE_BUILD_TYPE given, default to Release")
set(CMAKE_BUILD_TYPE Release)
Expand Down
24 changes: 12 additions & 12 deletions README-EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ This project is based on the [ggml](https://github.com/ggerganov/ggml) framework

1. Support more backends. In theory, ggml supports the following backends, and future adaptations will be gradually made. Contributions are welcome.

| Backend | Device | Supported |
|--------------------------------------|----------------------|--------------------------------|
| CPU | All | |
| [Metal](./docs/build.md#metal-build) | Apple Silicon | |
| [BLAS](./docs/build.md#blas-build) | All | |
| [BLIS](./docs/backend/BLIS.md) | All | |
| [SYCL](./docs/backend/SYCL.md) | Intel and Nvidia GPU | |
| [MUSA](./docs/build.md#musa) | Moore Threads GPU | |
| [CUDA](./docs/build.md#cuda) | Nvidia GPU | |
| [hipBLAS](./docs/build.md#hipblas) | AMD GPU | |
| [Vulkan](./docs/build.md#vulkan) | GPU | |
| [Cann](./docs/build.md#vulkan) | Ascend NPU | |
| Backend | Device | Supported |
|--------------------------------------|----------------------|--------------|
| CPU | All ||
| [Metal](./docs/build.md#metal-build) | Apple Silicon | |
| [BLAS](./docs/build.md#blas-build) | All ||
| [CUDA](./docs/build.md#cuda) | Nvidia GPU | |
| [Vulkan](./docs/build.md#vulkan) | GPU | |
| [Cann](./docs/build.md#cann) | Ascend NPU | Not yet tested |
| [BLIS](./docs/backend/BLIS.md) | All | |
| [SYCL](./docs/backend/SYCL.md) | Intel and Nvidia GPU | |
| [MUSA](./docs/build.md#musa) | Moore Threads GPU | |
| [hipBLAS](./docs/build.md#hipblas) | AMD GPU | |


2. Improve performance.
Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@

1. 支持更多backend , 理论上来说,ggml支持以下后端,后续将会慢慢适配,欢迎贡献。

| 后端 | 平台 | 是否支持 |
|--------------------------------------|----------------------|----------------|
| CPU | All | |
| [Metal](./docs/build.md#metal-build) | Apple Silicon | |
| [BLAS](./docs/build.md#blas-build) | All | |
| [BLIS](./docs/backend/BLIS.md) | All | |
| [SYCL](./docs/backend/SYCL.md) | Intel and Nvidia GPU | |
| [MUSA](./docs/build.md#musa) | Moore Threads GPU | |
| [CUDA](./docs/build.md#cuda) | Nvidia GPU | 适配中 |
| [hipBLAS](./docs/build.md#hipblas) | AMD GPU | |
| [Vulkan](./docs/build.md#vulkan) | GPU | |
| [Cann](./docs/build.md#vulkan) | Ascend NPU | |
| 后端 | 平台 | 是否支持 |
|--------------------------------------|----------------------|------|
| CPU | All ||
| [Metal](./docs/build.md#metal-build) | Apple Silicon | |
| [BLAS](./docs/build.md#blas-build) | All ||
| [CUDA](./docs/build.md#cuda) | Nvidia GPU | |
| [Vulkan](./docs/build.md#vulkan) | GPU | |
| [Cann](./docs/build.md#cann) | Ascend NPU | 未测试 |
| [BLIS](./docs/backend/BLIS.md) | All | |
| [SYCL](./docs/backend/SYCL.md) | Intel and Nvidia GPU | |
| [MUSA](./docs/build.md#musa) | Moore Threads GPU | |
| [hipBLAS](./docs/build.md#hipblas) | AMD GPU | |


4. 提升性能
Expand Down

0 comments on commit cdf29e3

Please sign in to comment.