Kiyote.Buffers.Numerics 0.8.0

dotnet add package Kiyote.Buffers.Numerics --version 0.8.0
                    
NuGet\Install-Package Kiyote.Buffers.Numerics -Version 0.8.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Kiyote.Buffers.Numerics" Version="0.8.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Kiyote.Buffers.Numerics" Version="0.8.0" />
                    
Directory.Packages.props
<PackageReference Include="Kiyote.Buffers.Numerics" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Kiyote.Buffers.Numerics --version 0.8.0
                    
#r "nuget: Kiyote.Buffers.Numerics, 0.8.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Kiyote.Buffers.Numerics@0.8.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Kiyote.Buffers.Numerics&version=0.8.0
                    
Install as a Cake Addin
#tool nuget:?package=Kiyote.Buffers.Numerics&version=0.8.0
                    
Install as a Cake Tool

Kiyote.Buffers.Numerics

Provides a INumericBufferOperator to perform actions on large numeric buffers. These operations are vectorized where possible for performance.

Overview

This library was created to service the needs of large buffer operations in other libraries. It offers a way to reduce boilerplate code such that you only write the operation you wish to perform on the buffer and the library will handle the rest.

Getting Started

Register the factories and operators with the DI container:

services.AddNumericBuffers();

Then inject the INumericBufferOperator into your class and use it to perform operations on buffers.

public class MyClass
{
    private readonly INumericBufferFactory _bufferFactory;
    private readonly INumericBufferOperator _bufferOperator;

    public MyClass(
        INumericBufferFactory bufferFactory,
        INumericBufferOperator bufferOperator
    ) {
        _bufferFactory = bufferFactory;
        _bufferOperator = bufferOperator;
    }

    public void ProcessBuffer()
    {
        IBuffer<float> buffer = _bufferFactory.Create( 100, 100, 0 );
        // Fill the buffer with whatever

        _bufferOperator.Normalize( buffer );
        // Now the buffer will contain normalized values between 0 and 1
    }
}
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.8.0 90 8/13/2026
0.7.1 76 8/12/2026
0.7.0 89 8/12/2026
0.6.1 85 8/11/2026
0.6.0 90 8/11/2026
0.5.1 109 4/14/2026
0.5.0 140 2/8/2026
0.4.0 289 12/15/2025
0.3.1 239 10/8/2025
0.3.0 208 10/6/2025