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
gaoqiong
composable_kernel
Commits
41bcd608
Commit
41bcd608
authored
Oct 05, 2022
by
Astha Rai
Browse files
commented out unused code
parent
b708807a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
include/ck/tensor_operation/gpu/grid/gridwise_elementwise_2d.hpp
.../ck/tensor_operation/gpu/grid/gridwise_elementwise_2d.hpp
+8
-8
No files found.
include/ck/tensor_operation/gpu/grid/gridwise_elementwise_2d.hpp
View file @
41bcd608
...
...
@@ -116,16 +116,16 @@ struct GridwiseElementwise_2D
// const auto thread_global_id_2d =
// thread_buffer_desc_mn.CalculateBottomIndex(make_multi_index(block_1d));
auto
thread_1d_id
=
get_thread_local_1d_id
();
index_t
M01_
=
8
;
//
auto thread_1d_id = get_thread_local_1d_id();
//
index_t M01_ = 8;
const
auto
M0
=
math
::
integer_divide_ceil
(
M
,
MPerThread
);
const
auto
N0
=
math
::
integer_divide_ceil
(
N
,
NPerThread
);
//
const auto M0 = math::integer_divide_ceil(M, MPerThread);
//
const auto N0 = math::integer_divide_ceil(N, NPerThread);
thread_1d_id
=
thread_1d_id
%
(
M0
*
N0
);
// swallow batch index
//
thread_1d_id = thread_1d_id % (M0 * N0); // swallow batch index
index_t
idx_N0
=
thread_1d_id
%
N0
;
index_t
idx_M0
=
thread_1d_id
/
N0
;
//
index_t idx_N0 = thread_1d_id % N0;
//
index_t idx_M0 = thread_1d_id / N0;
// const auto M01_adapt = (idx_M0 < M0 - M0 % M01_) ? M01_ : M0 % M01_;
...
...
@@ -135,7 +135,7 @@ struct GridwiseElementwise_2D
// const auto thread_global_id_2d =make_tuple(idx_N0_M01_local % M01_adapt + idx_M00 * M01_,
// idx_N0_M01_local /
//M01_adapt);
//
M01_adapt);
index_t
tid_m
=
get_thread_global_1d_id
();
index_t
tid_n
=
blockDim
.
y
*
blockIdx
.
y
+
threadIdx
.
y
;
...
...
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