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
f6f70673
Commit
f6f70673
authored
Jul 27, 2023
by
Adam Osewski
Browse files
Add default virtual method implementation.
parent
e3c56423
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
include/ck/tensor_operation/gpu/device/device_grouped_gemm_splitk.hpp
...ensor_operation/gpu/device/device_grouped_gemm_splitk.hpp
+5
-2
No files found.
include/ck/tensor_operation/gpu/device/device_grouped_gemm_splitk.hpp
View file @
f6f70673
...
@@ -88,7 +88,7 @@ struct DeviceGroupedGemmSplitK : public DeviceGroupedGemm<ALayout,
...
@@ -88,7 +88,7 @@ struct DeviceGroupedGemmSplitK : public DeviceGroupedGemm<ALayout,
// @param p_arg Pointer to the Argument we're going to change.
// @param p_arg Pointer to the Argument we're going to change.
// @param[in] kbatch The kbatch value.
// @param[in] kbatch The kbatch value.
//
//
virtual
void
SetKBatchSize
(
BaseArgument
*
p_arg
,
index_t
kbatch
)
const
=
0
;
virtual
void
SetKBatchSize
(
BaseArgument
*
/*
p_arg
*/
,
index_t
/*
kbatch
*/
)
const
{}
//------------------------------------------------------------------------//
//------------------------------------------------------------------------//
//
//
...
@@ -98,7 +98,10 @@ struct DeviceGroupedGemmSplitK : public DeviceGroupedGemm<ALayout,
...
@@ -98,7 +98,10 @@ struct DeviceGroupedGemmSplitK : public DeviceGroupedGemm<ALayout,
// @param[in] p_dev_kernel_args The pointer to the device memory which contains kernel
// @param[in] p_dev_kernel_args The pointer to the device memory which contains kernel
// arguments.
// arguments.
//
//
virtual
void
SetDeviceKernelArgs
(
BaseArgument
*
p_arg
,
const
void
*
p_dev_kernel_args
)
const
=
0
;
virtual
void
SetDeviceKernelArgs
(
BaseArgument
*
/*p_arg*/
,
const
void
*
/*p_dev_kernel_args*/
)
const
{
}
};
};
}
// namespace device
}
// namespace device
...
...
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