mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-27 03:11:28 +00:00
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:
parent
c46c7ccba5
commit
d8d96f0788
1 changed files with 6 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
|||
Loading…
Reference in a new issue