$fp = fopen("statistics", "a");
$remoteaddress = gethostbyaddr($REMOTE_ADDR);
$mydate = date("j M Y H:i");
fwrite($fp,$mydate);
fwrite($fp,",");
fwrite($fp,$remoteaddress);
fwrite($fp,",");
fwrite($fp,$REMOTE_ADDR);
fwrite($fp,",");
fwrite($fp,$REQUEST_URI);
fwrite($fp,"\n");
fclose($fp);
?>

|
CSI: The Complex Streamed Instruction Set
The Complex Streamed Instruction Set Architecture (CSI)
has been developed as a part of the
Δ-ILIAD
project. It is a
memory-to-memory vector architecture targeted at multimedia
applications. A single CSI instruction can process data
streams of arbitrary length and, in addition to traditional
arithmetic and logical operations,
performs data accesses, conversion
between storage and computation formats (packing and unpacking), and
complex arithmetic hardwired computation.
The main new features of the CSI are elimination of vector sectioning
and packing/unpacking instructions, and
introduction of new complex media arithmetic instructions.
Motivation
CSI Architecture
Implementation
Results
|
|