Support scatter/index_add with i64 indices for f16 (#1915)

This commit is contained in:
Daniël de Kok
2024-03-22 11:51:41 +01:00
committed by GitHub
parent 32f567bac4
commit fc1fe5e45b

View File

@ -168,8 +168,10 @@ IS_OP(__half, uint8_t, is_u8_f16)
GATHER_OP(__half, int64_t, gather_i64_f16)
GATHER_OP(__half, uint32_t, gather_u32_f16)
GATHER_OP(__half, uint8_t, gather_u8_f16)
IA_OP(__half, int64_t, ia_i64_f16)
IA_OP(__half, uint32_t, ia_u32_f16)
IA_OP(__half, uint8_t, ia_u8_f16)
SA_OP(__half, int64_t, sa_i64_f16)
SA_OP(__half, uint32_t, sa_u32_f16)
SA_OP(__half, uint8_t, sa_u8_f16)
#endif