Convert arrays of Int32 to arrays of Int for integer arithmetic

Quoting @scanon from your previous thread:

If you’re just doing 4 native-integer additions, you probably don’t need to use vDSP. CPUs have already figured out how to issue multiple integer operations without requiring code to be rewritten.

But you will want to use overflow-disabled operators to ensure optimal codegen:

3 Likes