⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 system.h

📁 SOM-sd 是现在国外非常流行的一个神经网络的结构自组织特征映射算法
💻 H
字号:
#ifndef SYSTEM_H_DEFINED#define SYSTEM_H_DEFINED/* Package information */#define PROG_VERSION "somsd 1.4.0"   /* Program version */#ifndef LITTLE_ENDIAN#define LITTLE_ENDIAN 1234#endif#ifndef BIG_ENDIAN#define BIG_ENDIAN    4321#endif#ifdef __CYGWIN__#undef PDP_ENDIAN#endif#ifndef PDP_ENDIAN#define PDP_ENDIAN    3412#endifint FindEndian();       /* Find endian type of system */void ListDataTypes();   /* List size of common data types */extern __inline__ unsigned long long int rdtsc();/* Clock cycles since reboot*/int GetWriteSpeed();    /* Approximate write speed to local disc */unsigned long long FreeDiskSpace(char *); /* Get user usable free disk space */char *GetMachineArch(); /* Get processor type */char *GetNodeName();    /* Get network node hostname */char *GetOSName();      /* Get operating system */unsigned long int GetSystemMemorySize(); /* Get size of physical memory */unsigned GetNumCPU();   /* Get number of CPUs on local system        */void PrintSoftwareInfo(FILE *ofile); /* Prints current software info */void PrintSystemInfo(FILE *ofile);   /* Prints local hardware info   */void SleepOnHiLoad();   /* Sleep while system load is high           */#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -