diff options
| author | Cherry Mui <cherryyz@google.com> | 2025-12-11 11:48:36 -0500 |
|---|---|---|
| committer | Cherry Mui <cherryyz@google.com> | 2025-12-11 10:59:13 -0800 |
| commit | b63cff6ad80a511ea949adafdec39c16f2e3e95d (patch) | |
| tree | 678f8835456ab6e3f18b53dd42283a2029a9bb59 /_content | |
| parent | 4bb6347331aaa9340ca6375aab445d8c61af9cd7 (diff) | |
| download | go-x-website-b63cff6ad80a511ea949adafdec39c16f2e3e95d.tar.xz | |
_content/doc/go1.26: add release notes for experimental simd support
For golang/go#75005.
Change-Id: Id4e01afa10e7266c133d4323058c76a701f588bc
Reviewed-on: https://go-review.googlesource.com/c/website/+/729260
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: David Chase <drchase@google.com>
Diffstat (limited to '_content')
| -rw-r--r-- | _content/doc/go1.26.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/_content/doc/go1.26.md b/_content/doc/go1.26.md index c4261ac2..478e59c1 100644 --- a/_content/doc/go1.26.md +++ b/_content/doc/go1.26.md @@ -243,6 +243,17 @@ The new [`crypto/hpke`](/pkg/crypto/hpke) package implements Hybrid Public Key E (HPKE) as specified in [RFC 9180](https://rfc-editor.org/rfc/rfc9180.html), including support for post-quantum hybrid KEMs. +### New experimental simd/archsimd package {#simd} + +Go 1.26 introduces a new experimental [`simd/archsimd`](/pkg/simd/archsimd/) +package, which can be enabled by setting the environment variable +`GOEXPERIMENT=simd` at build time. +This package provides access to architecture-specific SIMD operations. +It is currently available on the AMD64 architecture, supporting +128-bit, 256-bit, and 512-bit vectors. + +See the [proposal issue](/issue/73787) for more details. + ### Minor changes to the library {#minor_library_changes} #### [`bytes`](/pkg/bytes/) |
