Texas Memory Systems XP-15 user manual

User manual for the device Texas Memory Systems XP-15

Device: Texas Memory Systems XP-15
Category: Computer Hardware
Manufacturer: Texas Memory Systems
Size: 0.16 MB
Added : 11/16/2014
Number of pages: 17
Print the manual

Download

How to use this site?

Our goal is to provide you with a quick access to the content of the user manual for Texas Memory Systems XP-15. Using the online preview, you can quickly view the contents and go to the page where you will find the solution to your problem with Texas Memory Systems XP-15.

For your convenience

If looking through the Texas Memory Systems XP-15 user manual directly on this website is not convenient for you, there are two possible solutions:

  • Full Screen Viewing - to easily view the user manual (without downloading it to your computer), you can use full-screen viewing mode. To start viewing the user manual Texas Memory Systems XP-15 on full screen, use the button Fullscreen.
  • Downloading to your computer - You can also download the user manual Texas Memory Systems XP-15 to your computer and keep it in your files. However, if you do not want to take up too much of your disk space, you can always download it in the future from ManualsBase.
Texas Memory Systems XP-15 User manual - Online PDF
Advertisement
« Page 1 of 17 »
Advertisement
Print version

Many people prefer to read the documents not on the screen, but in the printed version. The option to print the manual has also been provided, and you can use it by clicking the link above - Print the manual. You do not have to print the entire manual Texas Memory Systems XP-15 but the selected pages only. paper.

Summaries

Below you will find previews of the content of the user manuals presented on the following pages to Texas Memory Systems XP-15. If you want to quickly view the content of pages found on the following pages of the manual, you can use them.

Abstracts of contents
Summary of the content on the page No. 1





XP-15 Vector Processor

User Guide




















Any trademarks or registered trademarks used in this document belong to the companies that own them.

Copyright © 2001, Texas Memory Systems, Inc. All rights are reserved. No part of this work may be
reproduced or used in any form or by any means - graphic, electronic or mechanical, including photocopying,
recording, taping, or information storage and retrieval systems - without permission of the copyrigh

Summary of the content on the page No. 2

Table of Contents Chapter 1 - Introduction ........................................................................................................................ 1-1 1.1 Related Texts .................................................................................................................................... 1-1 1.2 Typographical Conventions ............................................................................................................... 1-1 Chapter 2 - Overview...

Summary of the content on the page No. 3

Chapter 1 - Introduction The XP-15 vector processor is a PCI card that can be installed in a workstation and that delivers SuperComputer-class vector processing performance. This document is concerned with the installation and set-up of the XP-15. Chapter 2 gives an overview of the functionality of the XP-15. Chapter 3 describes the hardware and software installation of the XP-15. Chapter 4 describes a programming example for the XP-15 for use in an X-Midas environment. 1.1 Relat

Summary of the content on the page No. 4

Chapter 2 - Overview The XP-15 is a high-performance vector processor implemented on a single card suitable for installing in a PCI Local Bus card slot in a general-purpose computer. The XP-15 is based on the 8 GFLOPS TM-44 DSP chip from Texas Memory Systems and includes four 32 MB banks of fast local memory. The XP-15 is programmed by making calls to move data from host memory to XP-15 local memory, to perform one or more vector processing operations on the data, and to move results ba

Summary of the content on the page No. 5

Chapter 3 - Installation The XP-15 vector processor has currently been tested in the following computer platforms: q Compaq ALPHASERVER ES40. q Compaq ALPHASERVER DS10. XP-15 Software is currently available for the following operating system revisions: q TRU64 (Digital Unix) 5.1 3.1 Installing the XP-15 Hardware 3.1.1 Jumper Settings The XP-15 has no user-selectable jumpers. 3.1.2 Installing the XP-15 in a Computer Power-off the computer system. Select a suitable vacan

Summary of the content on the page No. 6

Enter the mount point of the CDROM - /cdrom What directory do you want to install the XP-15 software to - /usr/tms The XP15 software will be installed from /cdrom to /usr/tms Is this correct (y/n)?yes Installing the XP15 software. Finished installing the USER part of the XP15 software. The final step in installing the XP15 is to install the driver using a script that also asks a few questions. A typical run is shown, again with user responses underlined. #cd /cdrom #./inst

Summary of the content on the page No. 7

Xpmon[0]> t99 Running all tests: Performing SPRAG tests … . . testing many functions . . All tests should run without any errors. If any errors occur please contact Texas Memory Systems. 3.3.2 Programming Example Confidence Test The XP-15 confidence test is located on the XP-15 software CDROM in the examples/cfft directory, and a listing of the source code can be found in Appendix A. This simple application creates a signal co

Summary of the content on the page No. 8

The sample application is executed with one parameter on the command line: the XP-15 unit to be used. Typically, this will be unit 0 (zero) unless multiple XP-15s are installed in this host computer. % cfft -x 0 XP-15 Confidence test performing a 1048576 point CFFT on XP-15 #0 Allocate memory for test signal and FFT results Clearing results buffer Creating test signal Performing CFFT Wait for all XP-15 functions to complete First 10 values of CFFT results: 00: [ 16.0000, 0.0000]

Summary of the content on the page No. 9

Chapter 4 - X-Midas Programming Example: XTMIC This chapter describes the X-Midas programming example, how to execute it, and how to use it as a template for XP-15 applications. The source code is located on the XP-15 software CDROM in the examples/xtmic/ directory. 4.1 Overview The X-Midas programming example is a less robust version of the SAMTMIC software that currently runs on the SAM-450. The XP-15 implementation, referred to as the XTMIC, performs the same basic processing as

Summary of the content on the page No. 10

The XTMIC macro requires two command line parameters that determine which files the XTMIC will use for its processing. The input files must contain 16-bit integer data, and must have at least 1507328 elements. Assuming the input files are called input_a and input_b, the command line required to run the XTMIC would look like: % X-Midas> run_x input_a input_b XTMIC> Starting xtmic demo. XTMIC> Setting up files/pipes. XTMIC> Initializing XP15 buffers. XTMIC> Entering loop. Total i

Summary of the content on the page No. 11

Appendix A – XP-15 Confidence Test /************************************************************************** Copyright (c) 2001 by Texas Memory Systems, Inc. Texas Memory Systems, Inc. 11200 Westheimer #1000 Houston, TX 77042 (713) 266-3200 Module Name: cfft.c Package: CFFT demo Version: $Revision: $ Release Date: $Date: $ Description: XP15 FFT demo **************************************************

Summary of the content on the page No. 12

*/ while ((cc = getopt(argc, argv, "hx:")) != EOF) { switch (cc) { case 'x': xp15 = atoi(optarg); break; case 'h': case '?': default : help(); } } /* * Print some useful information */ printf("XP-15 Confidence test performing a %d point CFFT on XP-15 #%d\n", fft_size, xp15); /* * Allocate host memory for a test signal */ printf("Allocate me

Summary of the content on the page No. 13

status = vmov((TMS_FLOAT *)signal, (TMS_FLOAT *)cu, fft_size * 2); if (status < 0) sam_error(status); /* * Perform the CFFT */ printf("Performing CFFT\n"); status = cfft(cu, /* input buffer */ NULL, /* Twids not needed by XP-15 */ cy, /* output/scratch buffer */ 1, /* repeat value - 1 this time */ 1.0

Summary of the content on the page No. 14

results[ii].imag); } ecount++; } } if (ecount == 0) printf ("XP-15 confidence test completed with no errors\n"); else printf ("XP-15 confidence test completed with %d errors\n", ecount); exit(0); } /********************************************************************** Function: help Description: display help screen, and exits Arguments: none Returns: none *********************************************

Summary of the content on the page No. 15

Appendix B – PCI Local Bus Specifications The XP-15 interface adapter is a 3.3V signaling environment expansion card, as defined by the PCI Local Bus Specification 2.0, 2.1, and 2.2. This means that the XP-15 is designed to operate exclusively in 3.3V signaling environment system motherboards. During the development of the XP-15, the liberty was taken to add a second key slot on the PCI edge connector. This allows for operation and testing in most 5V signaling environment motherbo

Summary of the content on the page No. 16

Appendix C – XP-15 Hardware Control and Status Registers The XP-15 is a custom hardware adapter designed to provide processing power to a host computer (DEC Alpha, Intel PC, etc..). The XP-15's data bus is 32-bits or 64-bits wide (depending on the host PCI slot). The following tables describe the XP-15's hardware control registers. Each register is classified as read only, write only, or read/write. The least significant bit of each register is always tied to the least significa

Summary of the content on the page No. 17

3 ECHO RO Indicates the XP-15 has returned an ECHO packet 2 SPR RO Indicates the XP-15 has returned an SPR packet 1 DIAG RO Indicates the XP-15 has returned a diagnostic packet 0 STAT RO Indicates the XP-15 has returned a status packet Low PCI SN command address register (32 bits, R/W) Bit # Name Type Description 31-3 NA R/W This register is used to establish the low 32-bits of the PCI address for SN commands to the XP-15. This register consists of the bottom 32-bits of a 32-bit co


Alternative user manuals
# User manual Category Download
1 Sony MSAKIT-PC4A User manual Computer Hardware 2
2 Sony MRW62E-S1 2694866142 User manual Computer Hardware 5
3 Philips MATCH LINE 9596 User manual Computer Hardware 17
4 Sony 64GB SDHC Class 10 Memory Card Readers SF32UY User manual Computer Hardware 1
5 Philips PSC702 User manual Computer Hardware 1
6 Sony MRW62E/S1/181 User manual Computer Hardware 3
7 Sony 64GB SDHC Class 10 Memory Card Readers SF32N4/TQM User manual Computer Hardware 1
8 Philips SAA7345 User manual Computer Hardware 1
9 Philips SBC MC8650 User manual Computer Hardware 268
10 Philips PSC 605 User manual Computer Hardware 1
11 Sony DKA-MC2F User manual Computer Hardware 1
12 Sony AR-B1570 User manual Computer Hardware 2
13 Sony Memory Stick Micro MSM8TQ User manual Computer Hardware 1
14 321 Studios GHDX2-2430S-24F4D User manual Computer Hardware 1
15 Philips SAA7785 User manual Computer Hardware 3