Replies: 2 comments 1 reply
-
TACTICS proposal for NEON (ARCH-DEPs)
Surprisingly, this is all you need. TACTICS proposal for FP16 (strongly related to ARCH-DEPs)
|
Beta Was this translation helpful? Give feedback.
-
Recommendation before the refactoring & release: For the new functions, please try to give consistent arguments and semantics across different arch-deps (NEON vs non-NEON). Examples: ...
if NEON
function_neon_C(abc);
else
op a;
op b;
function_C2(c);
... RECOMMENDED if NEON
function_neon_C(abc);
else
function_fallback_C(abc); |
Beta Was this translation helpful? Give feedback.
-
After the next release, we can try arch-dep refactoring.
Objectives:
As-is:
To-be:
Files affected:
How they will be reorganized:
Timeline:
Note:
Beta Was this translation helpful? Give feedback.
All reactions