From 1e77e88657df24714f7fa6cf8cc92afecbcbf4f1 Mon Sep 17 00:00:00 2001 From: Nir Sonnenschein Date: Sun, 12 Jan 2025 11:58:50 +0200 Subject: [PATCH] Remove op compilation flags due to perf issue in some sceanrios the some of the optimization flags for the ops compiler for hp can cause a significant performance degradation. remove the flags until the issue is resolved --- op_builder/hpu/builder.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/op_builder/hpu/builder.py b/op_builder/hpu/builder.py index c176a586ba49..11e710a8ee48 100644 --- a/op_builder/hpu/builder.py +++ b/op_builder/hpu/builder.py @@ -32,9 +32,6 @@ def builder(self): def cxx_args(self): args = ['-O3', '-g', '-Wno-reorder'] - CPU_ARCH = self.cpu_arch() - SIMD_WIDTH = self.simd_width() - args += [CPU_ARCH, '-fopenmp', SIMD_WIDTH] return args def libraries_args(self):