give math.vectors shuffle words their own docs subsection in anticipation of having more ops in there
parent
5ff3eef0df
commit
f93dcfc792
|
@ -38,8 +38,20 @@ ARTICLE: "math-vectors-arithmetic" "Vector arithmetic"
|
||||||
{ $subsection distance }
|
{ $subsection distance }
|
||||||
{ $subsection v~ } ;
|
{ $subsection v~ } ;
|
||||||
|
|
||||||
ARTICLE: "math-vectors-logic" "Vector componentwise logic"
|
ARTICLE: "math-vectors-shuffle" "Vector shuffling, packing, and unpacking"
|
||||||
|
{ $notes
|
||||||
|
"These operations are primarily meant to be used with " { $vocab-link "math.vectors.simd" } " types. The software fallbacks for types not supported by hardware will not perform well."
|
||||||
|
}
|
||||||
|
$nl
|
||||||
|
{ $subsection vshuffle }
|
||||||
|
{ $subsection vbroadcast }
|
||||||
|
{ $subsection hlshift }
|
||||||
|
{ $subsection hrshift } ;
|
||||||
|
|
||||||
|
ARTICLE: "math-vectors-logic" "Vector component- and bit-wise logic"
|
||||||
|
{ $notes
|
||||||
"See " { $link "math-vectors-simd-logic" } " for notes about using comparison and logical operations with SIMD vector types."
|
"See " { $link "math-vectors-simd-logic" } " for notes about using comparison and logical operations with SIMD vector types."
|
||||||
|
}
|
||||||
$nl
|
$nl
|
||||||
"Element comparisons:"
|
"Element comparisons:"
|
||||||
{ $subsection v< }
|
{ $subsection v< }
|
||||||
|
@ -67,12 +79,10 @@ $nl
|
||||||
{ $subsection vxor }
|
{ $subsection vxor }
|
||||||
{ $subsection vnot }
|
{ $subsection vnot }
|
||||||
{ $subsection v? }
|
{ $subsection v? }
|
||||||
"Entire vector tests:"
|
"Vector tests:"
|
||||||
{ $subsection vall? }
|
{ $subsection vall? }
|
||||||
{ $subsection vany? }
|
{ $subsection vany? }
|
||||||
{ $subsection vnone? }
|
{ $subsection vnone? } ;
|
||||||
"Element shuffling:"
|
|
||||||
{ $subsection vshuffle } ;
|
|
||||||
|
|
||||||
ARTICLE: "math-vectors-misc" "Miscellaneous vector functions"
|
ARTICLE: "math-vectors-misc" "Miscellaneous vector functions"
|
||||||
{ $subsection trilerp }
|
{ $subsection trilerp }
|
||||||
|
@ -143,6 +153,7 @@ ARTICLE: "math-vectors" "Vector operations"
|
||||||
"Any Factor sequence can be used to represent a mathematical vector, however for best performance, the sequences defined by the " { $vocab-link "specialized-arrays" } " and " { $vocab-link "math.vectors.simd" } " vocabularies should be used."
|
"Any Factor sequence can be used to represent a mathematical vector, however for best performance, the sequences defined by the " { $vocab-link "specialized-arrays" } " and " { $vocab-link "math.vectors.simd" } " vocabularies should be used."
|
||||||
{ $subsection "math-vectors-arithmetic" }
|
{ $subsection "math-vectors-arithmetic" }
|
||||||
{ $subsection "math-vectors-logic" }
|
{ $subsection "math-vectors-logic" }
|
||||||
|
{ $subsection "math-vectors-shuffle" }
|
||||||
{ $subsection "math-vectors-misc" } ;
|
{ $subsection "math-vectors-misc" } ;
|
||||||
|
|
||||||
ABOUT: "math-vectors"
|
ABOUT: "math-vectors"
|
||||||
|
@ -312,11 +323,11 @@ HELP: vrshift
|
||||||
|
|
||||||
HELP: hlshift
|
HELP: hlshift
|
||||||
{ $values { "u" "a SIMD array" } { "n" "a non-negative integer" } { "w" "a SIMD array" } }
|
{ $values { "u" "a SIMD array" } { "n" "a non-negative integer" } { "w" "a SIMD array" } }
|
||||||
{ $description "Shifts the entire SIMD array to the left by " { $snippet "n" } " bytes. This word may only be used in a context where the compiler can statically infer that the input is a SIMD array." } ;
|
{ $description "Shifts the entire SIMD array to the left by " { $snippet "n" } " bytes, filling the vacated right-hand bits with zeroes. This word may only be used in a context where the compiler can statically infer that the input is a SIMD array." } ;
|
||||||
|
|
||||||
HELP: hrshift
|
HELP: hrshift
|
||||||
{ $values { "u" "a SIMD array" } { "n" "a non-negative integer" } { "w" "a SIMD array" } }
|
{ $values { "u" "a SIMD array" } { "n" "a non-negative integer" } { "w" "a SIMD array" } }
|
||||||
{ $description "Shifts the entire SIMD array to the right by " { $snippet "n" } " bytes. This word may only be used in a context where the compiler can statically infer that the input is a SIMD array." } ;
|
{ $description "Shifts the entire SIMD array to the right by " { $snippet "n" } " bytes, filling the vacated left-hand bits with zeroes. This word may only be used in a context where the compiler can statically infer that the input is a SIMD array." } ;
|
||||||
|
|
||||||
HELP: vbroadcast
|
HELP: vbroadcast
|
||||||
{ $values { "u" "a SIMD array" } { "n" "a non-negative integer" } { "v" "a SIMD array" } }
|
{ $values { "u" "a SIMD array" } { "n" "a non-negative integer" } { "v" "a SIMD array" } }
|
||||||
|
|
Loading…
Reference in New Issue