Parallel
stockman.asc
Associated article: Optimizing Matrix Math on the Pentium
Tags: Parallel Embedded Systems
_OPTIMIZING MATRIX MATH ON THE PENTIUM_
by Harlan W. Stockman
Listing One
.386P
.model small
.data
ALIGN 4
dstorage DQ 0.0
.code
;******************* ddot() *********************
; double ddot(int n, double *xptr, double *yptr)
; ..forms the dot product of two row vectors..
; RETURNS product in ...


