mirror of
https://github.com/JayDDee/cpuminer-opt.git
synced 2025-09-17 23:44:27 +00:00
v3.8.2.1
This commit is contained in:
@@ -182,6 +182,10 @@ static inline __m128i foo()
|
||||
// returns p[i]
|
||||
#define casti_m128i(p,i) (((__m128i*)(p))[(i)])
|
||||
|
||||
// p = any aligned pointer, o = scaled offset
|
||||
// returns p+o
|
||||
#define casto_m128i(p,i) (((__m128i*)(p))+(i))
|
||||
|
||||
//
|
||||
// Memory functions
|
||||
// n = number of __m128i, bytes/16
|
||||
@@ -671,6 +675,10 @@ typedef union m256_v8 m256_v8;
|
||||
// returns p[i]
|
||||
#define casti_m256i(p,i) (((__m256i*)(p))[(i)])
|
||||
|
||||
// p = any aligned pointer, o = scaled offset
|
||||
// returns p+o
|
||||
#define casto_m256i(p,i) (((__m256i*)(p))+(i))
|
||||
|
||||
//
|
||||
// Memory functions
|
||||
// n = number of 256 bit (32 byte) vectors
|
||||
|
||||
Reference in New Issue
Block a user