Skip to content

Commit

Permalink
Release 3.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
FreddieWitherden committed Apr 4, 2023
1 parent 3504ba1 commit 63c00be
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GiMMiK
======
Generator of Matrix Multiplication Kernels - GiMMiK - is a tool for generation of high performance matrix multiplication kernel code for various accelerator platforms. Currently C, CUDA, ISPC, HIP and OpenCL are supported.
Generator of Matrix Multiplication Kernels - GiMMiK - is a tool for generation of high performance matrix multiplication kernel code for various accelerator platforms. Currently C, CUDA, HIP, ISPC, Metal, and OpenCL are supported.

What does GiMMiK do?
--------------------
Expand Down
2 changes: 1 addition & 1 deletion gimmik/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

__version__ = '3.1'
__version__ = '3.1.1'
12 changes: 12 additions & 0 deletions gimmik/copenmp.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# -*- coding: utf-8 -*-

from gimmik.base import MatMul


class COpenMPMatMul(MatMul):
platform = 'c-openmp'
basemeta = {}

def _kernel_generators(self, dtype, dsize):
yield ('cstream', {}, {})

0 comments on commit 63c00be

Please sign in to comment.