Skip to content

Commit 69260f6

Browse files
msotoflotprimak
authored andcommitted
x64: injectors: add vmm preservation flag
1 parent bf16cb0 commit 69260f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cpu/x64/jit_gemm_inner_product_utils.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2019-2022 Intel Corporation
2+
* Copyright 2019-2023 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -311,7 +311,7 @@ jit_pp_kernel_t<isa>::jit_pp_kernel_t(size_t OC, size_t MB, dim_t dst_mb_stride,
311311
if (this->do_eltwise_ || this->do_binary_) {
312312
#define PARAM_OFF(field) offsetof(ker_args_t, field)
313313
static constexpr bool preserve_gpr = true;
314-
static constexpr bool preserve_vmm = false;
314+
static constexpr bool preserve_vmm = true;
315315
static const size_t helper_vmm_idx = is_avx512_ ? 31 : 15;
316316
static constexpr bool use_exact_tail_scalar_bcast = false;
317317
const auto dst_md_wrapper = memory_desc_wrapper(*dst_md);

0 commit comments

Comments
 (0)