%sqrt-vector ( dst src rep -- )


Vocabulary
cpu.architecture

Definition
USING: system ;

IN: cpu.architecture

HOOK: %sqrt-vector cpu ( dst src rep -- )


Methods
USING: combinators cpu.architecture cpu.x86.assembler system ;

M: x86 %sqrt-vector
{ { float-4-rep [ SQRTPS ] } { double-2-rep [ SQRTPD ] } }
case ;