Browse Source

Commented about which code will be incompatible with ARM SVE unless refactored into templates.

David Piuva 5 months ago
parent
commit
720d5d130d
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Source/DFPSR/base/simd3D.h

+ 2 - 0
Source/DFPSR/base/simd3D.h

@@ -259,6 +259,8 @@ struct F32x8x3 {
 };
 SIMD_VECTOR_INFIX_OPERATORS_3D(F32x8x3, F32x8, float)
 
+// TODO: Refactor into template types to allow using vector lengths that are not known in compile time, such as ARM SVE registers.
+
 // X vector aliases
 #if DSR_DEFAULT_VECTOR_SIZE == 16
 	using F32xXx3 = F32x4x3;