Comp 471 -- homework -- due October 19 Consider the following loop: DO 10 I=1,100 10 Y(I) = A*X(I)*X(I) + B*X(I) + C (1). Describe how this loop may be encoded using CRAY-1 style scalar and vector operations. (2). Estimate the time required to execute the loop in clock cycles. (3). Illustrate any chaining the occurs during the execution of the loop. What is the result of executing the following CRAY-1 instructions: ; set vector length to 30 VL <- 30 ; set scalar register 0 to 5 S0 <- 5 ; the odd stuff V0 <- V0 * S0