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
a822937a
Commit
a822937a
authored
Jul 27, 2023
by
ltqin
Browse files
change IsTileSkippable parameters name
parent
b0ae034e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
include/ck/tensor_operation/gpu/device/masking_specialization.hpp
...ck/tensor_operation/gpu/device/masking_specialization.hpp
+5
-3
No files found.
include/ck/tensor_operation/gpu/device/masking_specialization.hpp
View file @
a822937a
...
@@ -69,10 +69,12 @@ struct MaskUpperTriangleFromBottomRightPredicate
...
@@ -69,10 +69,12 @@ struct MaskUpperTriangleFromBottomRightPredicate
return
n
>
(
m
+
diagonal_offset_
);
return
n
>
(
m
+
diagonal_offset_
);
}
}
__host__
__device__
constexpr
bool
__host__
__device__
constexpr
bool
IsTileSkippable
(
index_t
m_tile_orig
,
IsTileSkippable
(
index_t
m
,
index_t
n
,
index_t
m_tile
,
index_t
/*n_tile*/
)
const
index_t
n_tile_orig
,
index_t
m_tile_size
,
index_t
/*n_tile_size*/
)
const
{
{
return
operator
()(
m
+
m_tile
-
1
,
n
);
return
operator
()(
m
_tile_orig
+
m_tile
_size
-
1
,
n
_tile_orig
);
}
}
private:
private:
...
...
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