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
d93e6486
"...resnet50_tensorflow.git" did not exist on "f739ec8de1c82525ef4bcb9c0d8f5b46b08bbf2f"
Commit
d93e6486
authored
Mar 20, 2023
by
rocking
Browse files
Add missing parameter
parent
2a69b39d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
include/ck/tensor_operation/gpu/element/quantization_operation.hpp
...k/tensor_operation/gpu/element/quantization_operation.hpp
+4
-1
No files found.
include/ck/tensor_operation/gpu/element/quantization_operation.hpp
View file @
d93e6486
...
@@ -246,7 +246,10 @@ struct Add_Mul_Activation_Mul_Clamp
...
@@ -246,7 +246,10 @@ struct Add_Mul_Activation_Mul_Clamp
template
<
typename
Activation
>
template
<
typename
Activation
>
struct
Add_Mul2_Activation_Mul_Clamp
struct
Add_Mul2_Activation_Mul_Clamp
{
{
Add_Mul2_Activation_Mul_Clamp
(
Activation
activationOp
)
:
activationOp_
(
activationOp
)
{}
Add_Mul2_Activation_Mul_Clamp
(
float
scale_z_inv
,
Activation
activationOp
)
:
scale_z_inv_
(
scale_z_inv
),
activationOp_
(
activationOp
)
{
}
__host__
__device__
constexpr
void
__host__
__device__
constexpr
void
operator
()(
int8_t
&
y
,
const
int32_t
&
x
,
const
int32_t
&
bias
,
const
float
&
scaleAcc
)
const
operator
()(
int8_t
&
y
,
const
int32_t
&
x
,
const
int32_t
&
bias
,
const
float
&
scaleAcc
)
const
...
...
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