Skip to content

Commit 5806bab

Browse files
committed
x64: lrn, softmax: move setting formats before post_ops_ok check
1 parent f47e44c commit 5806bab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cpu/x64/jit_uni_layer_normalization.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1233,9 +1233,9 @@ status_t jit_uni_layer_normalization_fwd_t::pd_t::init(engine_t *engine) {
12331233

12341234
return injector::post_ops_ok(post_ops_args);
12351235
};
1236-
VDISPATCH_LNORM(post_ops_ok(), VERBOSE_UNSUPPORTED_POSTOP);
12371236
VDISPATCH_LNORM(attr_.set_default_formats(dst_md(0)) == status::success,
12381237
VERBOSE_UNSUPPORTED_POSTOP);
1238+
VDISPATCH_LNORM(post_ops_ok(), VERBOSE_UNSUPPORTED_POSTOP);
12391239

12401240
VDISPATCH_LNORM(fill_compatible_stats_md(*src_md(), reordered_stat_md_)
12411241
== status::success,

src/cpu/x64/jit_uni_softmax.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,13 +135,13 @@ struct jit_uni_softmax_fwd_t : public primitive_t {
135135
| skip_mask_t::post_ops),
136136
VERBOSE_UNSUPPORTED_ATTR);
137137
VDISPATCH_SOFTMAX(attr_scales_ok(), VERBOSE_UNSUPPORTED_SCALES_CFG);
138-
VDISPATCH_SOFTMAX(post_ops_ok(), VERBOSE_UNSUPPORTED_POSTOP);
139138

140139
VDISPATCH_SOFTMAX(set_default_formats() == status::success,
141140
VERBOSE_UNSUPPORTED_TAG);
142141
VDISPATCH_SOFTMAX(
143142
attr_.set_default_formats(dst_md(0)) == status::success,
144143
VERBOSE_UNSUPPORTED_TAG);
144+
VDISPATCH_SOFTMAX(post_ops_ok(), VERBOSE_UNSUPPORTED_POSTOP);
145145
VDISPATCH_SOFTMAX(
146146
memory_desc_wrapper(src_md()).similar_to(
147147
memory_desc_wrapper(dst_md()), true, false, 0),

0 commit comments

Comments
 (0)