Skip to content

Commit

Permalink
x64: injectors: add vmm preservation flag
Browse files Browse the repository at this point in the history
  • Loading branch information
msotoflo authored and tprimak committed Apr 12, 2023
1 parent bf16cb0 commit 69260f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cpu/x64/jit_gemm_inner_product_utils.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2019-2022 Intel Corporation
* Copyright 2019-2023 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -311,7 +311,7 @@ jit_pp_kernel_t<isa>::jit_pp_kernel_t(size_t OC, size_t MB, dim_t dst_mb_stride,
if (this->do_eltwise_ || this->do_binary_) {
#define PARAM_OFF(field) offsetof(ker_args_t, field)
static constexpr bool preserve_gpr = true;
static constexpr bool preserve_vmm = false;
static constexpr bool preserve_vmm = true;
static const size_t helper_vmm_idx = is_avx512_ ? 31 : 15;
static constexpr bool use_exact_tail_scalar_bcast = false;
const auto dst_md_wrapper = memory_desc_wrapper(*dst_md);
Expand Down

0 comments on commit 69260f6

Please # to comment.