Git Product home page Git Product logo

blasnet's Introduction

BlasNet

BlasNet is an optimized library for basic linear algebra operations on arrays written in C# and developed at Proxem.

Table of contents

Requirements

BlasNet is developed in .Net Standard 2.0 and is compatible with both .Net Framework and .Net Core thus working on Windows and Linux platform. For Mac OS users there shouldn't be any problem but we didn't test extensively.

Intel MKL

Intel's math kernel library is used as a backend to optimize arrays operations when available. In order to use MKL you must launch the provider in your code. This step depends of your operating system :

Windows Users

You first need to download Intel's MKL libraries for Windows. Check that the folder contains mkl_rt.dll which is the main library used by BlasNet. To set the provider to use mkl_rt.dll for the low level array operations place the following line at the beginning of your code :

using BlasNet;

public namespace Test
{
    public static void Main(string[] args)
    {
        StartProvider.LaunchMklRt(max, path);
        // rest of the code;
    }
}

where max is the max number of threads used by MKL (-1 to use the max number) and path is the path to mkl_rt.dll.

Linux Users

You first need to download Intel's MKL libraries for Linux. Check that the folder contains libmkl_rt.so which is the main library used by BlasNet. To set the provider to use libmkl_rt.so for the low level array you first need to make the libraries visible through the LD_LIBRARY_PATH variable. To do so, add the path to Intel's libraries by running the following commands :

$  echo "/path/to/mkl/lib/" >> /etc/ld.so.conf.d/intel.conf
$  ldconfig

Now, to set the provider to use libmkl_rt.so for the low level operations place the following line at the beginning of your code :

using BlasNet;

public namespace Test
{
    public static void Main(string[] args)
    {
        StartProvider.LaunchMklRt(max);
        // rest of the code;
    }
}

where max is the max number of threads used by MKL (-1 to use the max number).

Nuget Package

We provide a Nuget Package of BlasNet to facilitate its use. It's available on Nuget.org. Symbols are also available to facilitate debugging inside the package.

Disclaimer

This is not an official Proxem product.

Contact information

If you can't make BlasNet work on your computer or if you have any tracks of improvement drop us an e-mail at one of the following address:

License

BlasNet is Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

blasnet's People

Contributors

joc-proxem avatar thp-proxem avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

blasnet's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.