Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
bitsandbytes
Commits
89cccd81
Commit
89cccd81
authored
May 02, 2023
by
Tim Dettmers
Browse files
A tile multi-tiling.
parent
4decb3cc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
csrc/kernels.cu
csrc/kernels.cu
+2
-2
No files found.
csrc/kernels.cu
View file @
89cccd81
...
@@ -3061,10 +3061,10 @@ template <typename T, int BITS, int THREADS> __global__ void gemm_device(int M,
...
@@ -3061,10 +3061,10 @@ template <typename T, int BITS, int THREADS> __global__ void gemm_device(int M,
T
local_A
[
1
];
T
local_A
[
1
];
T
local_B
[
32
];
T
local_B
[
32
];
const
int
a_tile_offset
=
(
8
*
16
+
16
);
const
int
a_tile_offset
=
(
16
+
16
);
const
int
b_tile_offset
=
(
16
*
32
+
16
);
const
int
b_tile_offset
=
(
16
*
32
+
16
);
__shared__
T
smem_A
[
2
*
batch_size_warps
*
8
*
16
+
(
2
*
16
*
(
batch_size_warps
-
1
))];
__shared__
T
smem_A
[
8
*
16
+
(
4
*
16
*
(
batch_size_warps
-
1
))];
__shared__
T
smem_B
[
2
*
batch_size_warps
*
16
*
32
+
(
2
*
16
*
(
batch_size_warps
-
1
))];
__shared__
T
smem_B
[
2
*
batch_size_warps
*
16
*
32
+
(
2
*
16
*
(
batch_size_warps
-
1
))];
__shared__
T
smem_C
[
8
*
32
];
__shared__
T
smem_C
[
8
*
32
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment