fix code too big test=develop (#19111)

Fix seq_pool failed when input dims is too large.
Resolve issue #3023
padding_in_crf
Kevin 6 years ago committed by GitHub
parent 4a959883e7
commit 945f3cf631
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -66,7 +66,7 @@ class SeqPoolCreator : public JitCodeCreator<seq_pool_attr_t> {
((attr.w / YMM_FLOAT_BLOCK + 4 /* for rest */) *
4 /* load, mul and save */ +
256) *
8;
16;
}
std::unique_ptr<GenBase> CreateJitCode(
const seq_pool_attr_t& attr) const override {

Loading…
Cancel
Save