Skip to content

Commit

Permalink
[NPU] Fix regression caused by layer_norm change (#12627)
Browse files Browse the repository at this point in the history
  • Loading branch information
plusbang authored Dec 27, 2024
1 parent 90f6709 commit 46eeab4
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,11 @@ def layer_norm(self, hidden_states, layernorm_weight):
)
eps = self.constant(self.rms_norm_eps)
hidden_states = self.eltwise_div(hidden_states, self.sqrt(self.eltwise_add(variance, eps)))
hidden_states = self.convert_to_fp16(hidden_states)
if os.environ.get("IPEX_LLM_NPU_DRIVER_VERSION", None) in ["5716", "5733"]:
# to support special drivers
hidden_states = self.convert_to_fp16(hidden_states)
else:
layernorm_weight = self.convert_to_fp32(layernorm_weight)
hidden_states = self.eltwise_mul(layernorm_weight, hidden_states)
hidden_states = self.convert_to_fp16(hidden_states)
return hidden_states
Expand Down

0 comments on commit 46eeab4

Please sign in to comment.