Skip to content

Commit 893adfc

Browse files
committed
fix!: remove anything simd
1 parent 8b440fa commit 893adfc

4 files changed

Lines changed: 0 additions & 32 deletions

File tree

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ documentation = "https://docs.rs/jbonsai"
1616
default = ["htsvoice"]
1717
binary = ["htsvoice", "dep:hound"]
1818
htsvoice = ["dep:nom"]
19-
simd = []
2019

2120
[package.metadata.docs.rs]
2221
all-features = true

README-ja.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,6 @@ jbonsai = "0.3.0"
2929

3030
<!-- x-release-please-end -->
3131

32-
### SIMD (experimental)
33-
34-
jbonsaiは、feature [portable_simd](https://github.com/rust-lang/portable-simd)による高速化をサポートしています。SIMD高速化を有効にするには、
35-
36-
- nightly ツールチェーンを使用する必要があります。
37-
- 次のように`features = ["simd"]`を指定する必要があります。
38-
<!-- x-release-please-start-version -->
39-
```toml
40-
[dependencies]
41-
jbonsai = { version = "0.3.0", features = ["simd"] }
42-
```
43-
<!-- x-release-please-end -->
44-
45-
SIMDサポートは非常に実験的であり、いつでも変更される可能性があります。
46-
4732
## 使用例
4833

4934
以下の例は,「盆栽」と読み上げる音声を生成し,`speech`変数にモノラル, 48000 HzのPCMとして格納します.

README.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,6 @@ jbonsai = "0.3.0"
2929

3030
<!-- x-release-please-end -->
3131

32-
### SIMD (experimental)
33-
34-
jbonsai supports acceleration provided by feature [portable_simd](https://github.com/rust-lang/portable-simd). In order to enable SIMD acceleration,
35-
36-
- you must use nightly toolchain.
37-
- you have to specify `features = ["simd"]` as follows:
38-
<!-- x-release-please-start-version -->
39-
```toml
40-
[dependencies]
41-
jbonsai = { version = "0.3.0", features = ["simd"] }
42-
```
43-
<!-- x-release-please-end -->
44-
45-
The SIMD support is highly experimental and may change at any time.
46-
4732
## Example
4833

4934
This example produces a mono, 48,000 Hz (typically) PCM data saying 「盆栽」(ぼんさい; bonsai) in `speech` variable.

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#![deny(missing_docs)]
22
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
3-
#![cfg_attr(feature = "simd", feature(portable_simd))]
43
#![doc = include_str!("../README.md")]
54

65
mod constants;

0 commit comments

Comments
 (0)