Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
blas.h
Upload User: kellyonhid
Upload Date: 2013-10-12
Package Size: 932k
Code Size: 1k
Category:
3D Graphic
Development Platform:
Visual C++
- // Template Numerical Toolkit (TNT) for Linear Algebra
- //
- // BETA VERSION INCOMPLETE AND SUBJECT TO CHANGE
- // Please see http://math.nist.gov/tnt for updates
- //
- // R. Pozo
- // Mathematical and Computational Sciences Division
- // National Institute of Standards and Technology
- #ifndef BLAS_H
- #define BLAS_H
- #include "fortran.h"
- // This file incomplete and included here only to demonstrate the
- // basic framework for linking with the Fortran or assembly BLAS.
- //
- #define fi_ Fortran_integer
- #define fd_ Fortran_double
- #define ff_ Fortran_float
- #define fc_ Fortran_complex
- #define fz_ Fortran_double_complex
- // these are the Fortran mapping conventions for function names
- // (NOTE: if C++ supported extern "Fortran", this wouldn't be necesary...)
- //
- #define F77_DASUM dasum_
- #define F77_DAXPY daxpy_
- #define F77_CAXPY cazpy_
- #define F77_DDOT ddot_
- extern "C"
- {
- fd_ F77_DASUM(const fi_ *N , const fd_ *dx, const fi_* incx);
- }
- #undef fi_
- #undef fd_
- #undef ff_
- #undef fc_
- #undef fz_
- #endif
- // BLAS_H