Skip to content

Commit

Permalink
Release v3.2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
FreddieWitherden committed Feb 14, 2024
1 parent 7952292 commit 39baaf5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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.2'
__version__ = '3.2.1'
2 changes: 1 addition & 1 deletion gimmik/hip.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def _kernel_generators(self, dtype, dsize, *, gcn_arch=None, warp_size=64):
meta = {'block': (blkx, ms, 1), 'shared': 2*bsz*blkx*dsize}
yield ('bstream-msplit', args, meta)

## Two-way k-split B loading, C streaming kernel
# Two-way k-split B loading, C streaming kernel
ks, csz, blkx = 2, 24, 64
args = {'ksplit': ks, 'csz': csz, 'blockx': blkx}
meta = {'block': (blkx, ks, 1), 'shared': (ks - 1)*csz*blkx*dsize}
Expand Down

0 comments on commit 39baaf5

Please sign in to comment.