From 8724e89ff005ebef4339d7280ff592837404a98d Mon Sep 17 00:00:00 2001 From: "Carson M." Date: Tue, 7 Apr 2026 14:03:37 -0500 Subject: [PATCH] docs: no longer shipping XNNPACK --- docs/content/perf/execution-providers.mdx | 2 +- docs/core/ep.tsx | 3 +-- docs/next-env.d.ts | 6 ------ 3 files changed, 2 insertions(+), 9 deletions(-) delete mode 100644 docs/next-env.d.ts diff --git a/docs/content/perf/execution-providers.mdx b/docs/content/perf/execution-providers.mdx index 9a38748..a469456 100644 --- a/docs/content/perf/execution-providers.mdx +++ b/docs/content/perf/execution-providers.mdx @@ -192,7 +192,7 @@ See [Runtime dylib loading](/setup/linking#runtime-dylib-loading) for more infor ### Prebuilt binary combos provides prebuilt binaries for the following combinations of EP features: -- `directml`/`xnnpack`/`coreml` are available in any build if the platform supports it. +- `directml`/`coreml` are available in any build if the platform supports it. - `cuda`/`tensorrt` - `webgpu` - `nvrtx` diff --git a/docs/core/ep.tsx b/docs/core/ep.tsx index e0a8451..e77b1ff 100644 --- a/docs/core/ep.tsx +++ b/docs/core/ep.tsx @@ -87,8 +87,7 @@ export const EXECUTION_PROVIDER_ARRAY: ExecutionProvider[] = [ vendor: 'Google', name: 'XNNPACK', feature: 'xnnpack', - platforms: [ { arch: 'x64' }, { arch: 'arm64' }, { arch: 'web' } ], - binaries: [ { arch: 'x64' }, { arch: 'arm64' }, { arch: 'web' } ] + platforms: [ { arch: 'x64' }, { arch: 'arm64' }, { arch: 'web' } ] }, { icon: , diff --git a/docs/next-env.d.ts b/docs/next-env.d.ts deleted file mode 100644 index c4b7818..0000000 --- a/docs/next-env.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -/// -/// -import "./.next/dev/types/routes.d.ts"; - -// NOTE: This file should not be edited -// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.