[Hardware][intel GPU] bump up ipex version to 2.3 (#8365)

Co-authored-by: Yan Ma <yan.ma@intel.com>
This commit is contained in:
Kunshang Ji
2024-09-14 07:54:34 +08:00
committed by GitHub
parent 9ba0817ff1
commit 851725202a
6 changed files with 60 additions and 87 deletions

View File

@@ -82,14 +82,11 @@ class RMSNorm(CustomOp):
self.variance_epsilon,
)
return x, residual
out = torch.empty_like(x)
ops.rms_norm(
out,
return ops.rms_norm(
x,
self.weight.data,
self.variance_epsilon,
)
return out
def extra_repr(self) -> str:
s = f"hidden_size={self.weight.data.size(0)}"