https://github.com/lostbeard/blazorwebappsimddetectexample
This .Net 8 Blazor Web App project demonstrates a way of detecting SIMD support and using it if available.
https://github.com/lostbeard/blazorwebappsimddetectexample
Last synced: 6 days ago
JSON representation
This .Net 8 Blazor Web App project demonstrates a way of detecting SIMD support and using it if available.
- Host: GitHub
- URL: https://github.com/lostbeard/blazorwebappsimddetectexample
- Owner: LostBeard
- License: mit
- Created: 2023-11-21T19:53:41.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-27T04:21:26.000Z (almost 2 years ago)
- Last Synced: 2025-03-10T14:18:29.100Z (7 months ago)
- Language: HTML
- Size: 117 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Blazor Web App SIMD Detect Example
Blazor Web App SIMD Detect Example (this repo)
[BlazorWebAppSIMDDetectExample](https://github.com/LostBeard/BlazorWebAppSIMDDetectExample)Blazor WebAssembly Standalone SIMD Detect Example
[BlazorWASMSIMDDetectExample](https://github.com/LostBeard/BlazorWASMSIMDDetectExample)This repo demos SIMD detection and loading of a compatible project build so that the advantages of SIMD can be used when available and also allows the app to run when they are not.
Blazor Web App with WebAssembly interactivity is the new adaptation of an ASP.Net Hosted Blazor WASM app in .Net 8 (formally known as Blazor United.)
"Blazor Web App" and "Blazor WebAssembly Standalone" use different runtimes loaded by "_framework/blazor.web.js" and "_framework/blazor.webassembly.js" respectively. The Blazor Web App runtime does not start a WASM environment automatically unlike the Blazor WASM runtime and also needs to be configured differently.
Documentation on startup condifiguration:
[Runtime Startup](https://learn.microsoft.com/en-us/aspnet/core/blazor/fundamentals/startup?view=aspnetcore-8.0#load-client-side-boot-resources)