Skip to content

Commit

Permalink
Update veintrin.py to make it work with i1 patch.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaz7 committed Aug 19, 2020
1 parent 3d2391e commit 1a5ea6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/lib/Target/VE/veintrin.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ def stride(self):
T_v256u64 = Type("v256f64", "V256d", "LLVMType<v256f64>", "unsigned long int*", T_u64)
T_v256u32 = Type("v256f64", "V256d", "LLVMType<v256f64>", "unsigned int*", T_u32)

T_v4u64 = Type("v4i64", "V4ULi", "LLVMType<v4i64>", "unsigned int*", T_u64) # for VM
T_v8u64 = Type("v8i64", "V8ULi", "LLVMType<v8i64>", "unsigned int*", T_u64) # for VM512
T_v4u64 = Type("v256i1", "V256b", "LLVMType<v256i1>", "unsigned int*", T_u64) # for VM
T_v8u64 = Type("v512i1", "V512b", "LLVMType<v512i1>", "unsigned int*", T_u64) # for VM512

#T_v8u32 = Type("v8i32", "V8ULi", "unsigned int*", T_u32)
#T_v16u32 = Type("v16i32", "V16ULi", "unsigned int*", T_u32)
Expand Down

0 comments on commit 1a5ea6d

Please sign in to comment.