Skip to content
View vermorel's full-sized avatar

Organizations

@Lokad

Block or report vermorel

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Lokad/ILPack Public

    Serialize .NET Core assemblies

    C# 306 39

  2. Lokad/FasterMath Public

    Intrinsics accelerated math functions for .NET Core - trading accuracy for performance

    C# 17 2

  3. Fast 1D convolution with AVX
    1
    // Fast 1D convolution with AXV
    2
    // By Joannes Vermorel, Lokad, January 2018
    3
    // Released under MIT license
    4
    
                  
    5
    #include <string.h>
  4. C# Half-precision data type
    1
    /// ================ Half.cs ====================
    2
    /// The code is free to use for any reason without any restrictions.
    3
    /// Ladislav Lang (2009), Joannes Vermorel (2017)
    4
    
                  
    5
    using System;
  5. Regression. A monolithic random fore...
    1
    using System;
    2
    using System.Collections.Generic;
    3
    using System.Diagnostics;
    4
    using System.Linq;
    5
    using NUnit.Framework;
  6. C# Z-Transform, the discrete version...
    1
    using System;
    2
    using System.Collections.Generic;
    3
    using System.Diagnostics;
    4
    
                  
    5
    namespace Lokad