Giter VIP home page Giter VIP logo

libysmm's Introduction

libysmm

libysmm is a library for performing small matrix multiplications on GPUs.

Dependencies

Beyond OpenCL, libysmm depends on the header-only libraries:

Both libraries are fetched automatically by Cmake using FetchContent.

Build

git clone https://github.com/FreddieWitherden/libysmm.git
cd libysmm/
mkdir build && cd build
cmake ./../
make

API

cl_device_id dev;
cl_context ctx;
cl_command_queue queue;
cl_mem bufA, bufB, bufC;
int M, N, K;

// ...

libysmm_cl_handle_t h;
libysmm_cl_create_handle(&h, ctx, dev, 0);

libysmm_smm_t smm = {
    .dtype = LIBYSMM_DTYPE_FP32,
    .layout = LIBYSMM_LAYOUT_ROW_MAJOR,
    .transpose = LIBYSMM_TRANSPOSE_NN,
    .m = M, .n = N, .k = K,
    .lda = K, .ldb = N, .ldc = N,
    .alpha = 1.0, .beta = 0,
    .flags = 0
};

libysmm_cl_smm_kernel_t smmk;
libysmm_cl_create_smm_kernel(&smmk, h, &smm, sizeof(smm), 0);

libysmm_cl_enqueue_smm_kernel(smmk, bufA, bufB, bufC, queue, 0, NULL, NULL);

// ...

libysmm_cl_destory_smm_kernel(smmk);
libysmm_cl_destroy_handle(h);

libysmm's People

Contributors

alheinecke avatar freddiewitherden avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

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.