Idein / py-videocore6

Python library for GPGPU programming on Raspberry Pi 4
https://idein.jp
GNU General Public License v2.0
247 stars 28 forks source link

Integrate SFU register and operator #14

Closed notogawa closed 4 years ago

notogawa commented 4 years ago

A SFU register is also treated as a corresponding SFU operator. This PR removes op_ which is prefixed to SFU operator to avoid a name conflict with SFU register.

Before this PR,

mov(log, r0)
op_log(rf0, r0)

After this PR,

mov(log, r0)
log(rf0, r0)
Terminus-IMRC commented 4 years ago

Thanks! It makes easy to issue SFU instructions.