Fix a build issue (#14944)

### Description
<!-- Describe your changes. -->



### Motivation and Context
<!-- - Why is this change required? What problem does it solve?
- If it fixes an open issue, please link to the issue here. -->

https://github.com/microsoft/onnxruntime/issues/14940
This commit is contained in:
Ye Wang 2023-03-08 13:05:49 -08:00 committed by GitHub
parent c46c7ccba5
commit d8d96f0788
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -175,7 +175,12 @@ inline __device__ float4 add(float4 a, float4 b)
inline __device__ Float8_ add(Float8_ a, Float8_ b)
{
return;
Float8_ c;
c.x = add(a.x, b.x);
c.y = add(a.y, b.y);
c.z = add(a.z, b.z);
c.w = add(a.w, b.w);
return c;
}
////////////////////////////////////////////////////////////////////////////////////////////////////