Posts by this author

Dec 11, 2023
Post comments count2
Post likes count16

Hardware Intrinsics in .NET 8

.NET 8 includes significant improvements to the Hardware Intrinsics feature.

.NETC#
Jun 9, 2022
Post comments count34
Post likes count3

.NET 7 Preview 5 – Generic Math

.NET 7 Preview 5 includes significant improvements to the Generic Math feature.

.NETC#
Aug 10, 2021
Post comments count54
Post likes count3

Preview Features in .NET 6 – Generic Math

If you’ve ever wanted to use operators with generic types or thought that interfaces could be improved by supporting the ability to define static methods as part of their contract, then this blog post is for you. With .NET 6 we will be shipping a preview of the new generic math and static abstracts in interfaces features.

.NETC#.NET Internals
Sep 3, 2019
Post comments count35
Post likes count4

Hardware Intrinsics in .NET Core

Several years ago, we decided that it was time to support SIMD code in .NET. We introduced the System.Numerics namespace with , , , , and related types. These types expose a general-purpose API for creating, accessing, and operating on them using hardware vector instructions (when available). They also provide a software fallback for when the hardw...

.NET CorePerformance
Mar 5, 2019
Post comments count18
Post likes count0

Floating-Point Parsing and Formatting improvements in .NET Core 3.0

Starting back with the .NET Core 2.1 release, we were making iterative improvements to the floating-point parsing and formatting code in .NET Core. Now, in .NET Core 3.0 Preview 3, we are nearing completion of this work and would like to share more details about these changes and some of the differences you might see in your applications. The prim...

.NET Core