Skip to content

Commit

Permalink
Rename no prefetch option for LIBXSMM_JIT
Browse files Browse the repository at this point in the history
  • Loading branch information
krenzland committed Sep 22, 2023
1 parent 908f9cf commit f9bb075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yateto/codegen/gemm/gemmgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ def _kernel(self, routine_name):
#flags += ["LIBXSMM_GEMM_FLAG_ALIGN_C"]
libxsmm_flag_str = " | ".join(flags)

prefetch_flag = "LIBXSMM_GEMM_PREFETCH_SIGONLY" if not self._arch.enablePrefetch else "LIBXSMM_GEMM_PREFETCH_BL2_VIA_C"
prefetch_flag = "LIBXSMM_GEMM_PREFETCH_NONE" if not self._arch.enablePrefetch else "LIBXSMM_GEMM_PREFETCH_BL2_VIA_C"

kernel_var_name = f'{routine_name}_var'
return """
Expand Down

0 comments on commit f9bb075

Please sign in to comment.