Skip to content

Commit

Permalink
fix: disable SIMD in generated transform code by default
Browse files Browse the repository at this point in the history
  • Loading branch information
JairusSW committed Jan 21, 2025
1 parent 491fe0b commit e043d95
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## UNRELEASED

## 2025-01-20 - 1.0.0-alpha.2

- fix: disable SIMD in generated transform code by default

## 2025-01-20 - 1.0.0-alpha.1

- feat: finish implementation of arbitrary data serialization and deserialization using JSON.Value
Expand Down
2 changes: 1 addition & 1 deletion transform/lib/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion transform/lib/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion transform/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ class JSONTransform extends Visitor {
}
}

getStores(data: string, simd: boolean = true): string[] {
getStores(data: string, simd: boolean = false): string[] {
const out: string[] = [];
const sizes = strToNum(data, simd);
let offset = 0;
Expand Down

0 comments on commit e043d95

Please sign in to comment.