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
fengzch-das
nunchaku
Commits
68728d3a
Commit
68728d3a
authored
Feb 22, 2025
by
sxtyzhangzk
Committed by
Zhekai Zhang
Feb 22, 2025
Browse files
[major] fix `load_act` missing
parent
e2699ad5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
src/kernels/zgemm/gemm_base.cuh
src/kernels/zgemm/gemm_base.cuh
+13
-1
No files found.
src/kernels/zgemm/gemm_base.cuh
View file @
68728d3a
...
...
@@ -848,7 +848,19 @@ public:
using typename Base::EpilogueDefault; \
using typename Base::EpilogueNop; \
template<bool USE_BIAS, bool USE_SCALE> \
using EpilogueBias = typename Base::EpilogueBias<USE_BIAS, USE_SCALE>;
using EpilogueBias = typename Base::EpilogueBias<USE_BIAS, USE_SCALE>; \
using Base::mma_f16xf16_f32; \
using Base::packed_fp32_to_fp16; \
using Base::packed_fp16_to_fp32; \
using Base::load_act; \
using Base::load_wgt; \
using Base::load_ascale; \
using Base::load_wscale; \
using Base::broadcast_wscale; \
using Base::broadcast_ascale; \
using Base::apply_scales; \
using Base::pack_ascales; \
using Base::pack_wscales;
template
<
typename
kernel
,
typename
...
T
>
...
...
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