"vscode:/vscode.git/clone" did not exist on "c9504bba10781c24214ec4b1c63f42b10ef4e3d7"
Commit 340cb150 authored by Rosty Geyyer's avatar Rosty Geyyer
Browse files

Added comments on Dl op split_k>1 support

parent 9cdaae76
...@@ -16,6 +16,8 @@ bool run_grouped_conv_bwd_weight(const ExecutionConfig& config, ...@@ -16,6 +16,8 @@ bool run_grouped_conv_bwd_weight(const ExecutionConfig& config,
{ {
ck::index_t split_k; ck::index_t split_k;
// Set split_k = 2 for xdl op, split_k = 1 for dl // Set split_k = 2 for xdl op, split_k = 1 for dl
// Dl op doesn't support split_k > 1
// TODO: Add Dl op split_k > 1 support
if(!(ck::get_device_name() == "gfx906" || ck::get_device_name() == "gfx1030")) if(!(ck::get_device_name() == "gfx906" || ck::get_device_name() == "gfx1030"))
{ {
split_k = 2; split_k = 2;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment