Skip to content

Commit 63c00be

Browse files
Release 3.1.1.
1 parent 3504ba1 commit 63c00be

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GiMMiK
22
======
3-
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.
3+
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.
44

55
What does GiMMiK do?
66
--------------------

gimmik/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# -*- coding: utf-8 -*-
22

3-
__version__ = '3.1'
3+
__version__ = '3.1.1'

gimmik/copenmp.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# -*- coding: utf-8 -*-
2+
3+
from gimmik.base import MatMul
4+
5+
6+
class COpenMPMatMul(MatMul):
7+
platform = 'c-openmp'
8+
basemeta = {}
9+
10+
def _kernel_generators(self, dtype, dsize):
11+
yield ('cstream', {}, {})
12+

0 commit comments

Comments
 (0)