时代在发展,科技在进步。CPU处理能力越来越强,小白一般是用CPU-Z或者鲁大师之类的软件看跑分,下面我也给出一个小程序,更简单明了的体现你电脑的CPU运算能力。时间越短越好。代码为Linux版本和Android版,Windows版本需要自己稍微改一下下。
Linux
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | #include <string> #include <strings.h> #include <stdio.h> #include <sys/time.h> #include <stdlib.h> #include <pthread.h> #include<fcntl.h> #include<unistd.h> #include<sys/mman.h> #include<sys/types.h> #include<sys/stat.h> #include <sys/select.h> #include <termios.h> #include<sys/ioctl.h> #include <math.h> #include <assert.h> typedef unsigned int DWORD ; int kbhit() { static const int STDIN = 0; static bool initialized = false ; if (!initialized) { // Use termios to turn off line buffering termios term; tcgetattr(STDIN, &term); term.c_lflag &= ~ICANON; tcsetattr(STDIN, TCSANOW, &term); setbuf (stdin, NULL); initialized = true ; } int bytesWaiting; ioctl(STDIN, FIONREAD, &bytesWaiting); return bytesWaiting; } int getch() { struct termios oldt, newt; int ch; tcgetattr(STDIN_FILENO, &oldt); newt = oldt; newt.c_lflag &= ~(ICANON | ECHO); tcsetattr(STDIN_FILENO, TCSANOW, &newt); ch = getchar (); tcsetattr(STDIN_FILENO, TCSANOW, &oldt); return ch; } //#define DWORD unsigned int volatile DWORD GetTick( void ) { struct timeval tv; gettimeofday(&tv, NULL); return (tv.tv_sec * 1000L + tv.tv_usec / 1000); } double logval( double x) { return log (x + sqrt (1 + x * x)); } double GetY( double x) { return (x * sqrt (1 + x * x) + log (x + sqrt (1 + x * x))); } double GetX( double y, int s = 0); double GetX( double y, int s) { int iCount = 0; double x = sqrt (2) * y * sqrt (1 / ( sqrt (4 * y * y + 1) + 1)); double fXLastStart = 0, fXLastEnd = x, fXMiddle = (fXLastEnd + fXLastStart) / 2; double fYMiddle = 0; do { fYMiddle = GetY(fXMiddle); if (fYMiddle > y) { fXLastEnd = fXMiddle; fXMiddle = (fXLastStart + fXMiddle) / 2; } else { fXLastStart = fXMiddle; fXMiddle = (fXLastEnd + fXMiddle) / 2; } iCount++; } while ( fabs (fYMiddle - y) > 0.0001); if (s) printf ( "%d\n" , iCount); return fXMiddle; } int main() { volatile int id = 0x100; volatile double x, y; x = 100.0; y = 100.0; volatile double a = atan2 (y, x), b = 0, c = 0, d = 0, ww = 0; volatile DWORD t0 = GetTick(); for ( volatile int i = 0; i < 1000 * 1000L; i++) { a = atan2 (y, x + 1 + i / 1000.0); b = sin (x / 10.0 + i / 1000.01); c = cos (y / 100.0 + i / 1000.02); d = sqrt (y / x * 10 + i / 1000.03); ww = a + b + c + d; a = atan2 (y, x + 10 + i / 1000.04); b = sin (x / 10.01 + i / 1000.05); c = cos (y / 100.01 + i / 1000.06); d = sqrt (y / x * 101 + i / 1000.07); a = ww - c + a + b + c + d; ww = a + ww; a = atan2 (y, x + 11 + i / 1000.08); b = sin (x / 10.02 + i / 1000.09); c = cos (y / 100.02 + i / 1000.10); d = sqrt (y / x * 102 + i / 1000.110); ww = a + b + c + d; a = atan2 (y, x + 12 + i / 1000.120); b = sin (x / 10.03 + i / 1000.130); c = cos (y / 100.03 + i / 1000.140); d = sqrt (y / x * 103 + i / 1000.150); b = ww - c + a + b + c + d; ww = a + ww; } volatile DWORD t1 = GetTick(); printf ( "----------\n" ); char msg[512] = {0}; printf ( "ID=%d atan2=%f\n time=%d(ms), zhys(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 16000.0); printf (msg, "ID=%d atan2=%f\n time=%d(ms), zhys(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 16000.0); t0 = GetTick(); for ( volatile int i = 0; i < 1000 * 1000L; i++) { a = atan2 (y, x + 1 + i / 1000.0); b = atan2 (y, x / 10.0 + i / 1000.01); c = atan2 (x, y / 100.0 + i / 1000.02); d = atan2 (y, y / x * 10 + i / 1000.03); ww = a + b + c + d; a = atan2 (y, x + 10 + i / 1000.04); b = atan2 (y, x / 10.01 + i / 1000.05); c = atan2 (x, y / 100.01 + i / 1000.06); d = atan2 (x, y / x * 101 + i / 1000.07); a = ww - c + a + b + c + d; ww = a + ww; a = atan2 (y, x + 11 + i / 1000.08); b = atan2 (y, x / 10.02 + i / 1000.09); c = atan2 (x, y / 100.02 + i / 1000.10); d = atan2 (x, y / x * 102 + i / 1000.110); ww = a + b + c + d; a = atan2 (y, x + 12 + i / 1000.120); b = atan2 (y, x / 10.03 + i / 1000.130); c = atan2 (x, y / 100.03 + i / 1000.140); d = atan2 (x, y / x * 103 + i / 1000.150); b = ww - c + a + b + c + d; ww = a + ww; } t1 = GetTick(); printf ( "ID=%d atan2=%f\n time=%d(ms), atan2(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 16000.0); bzero(msg, 512); printf (msg, "ID=%d atan2=%f\n time=%d(ms), atan2(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 16000.0); t0 = GetTick(); for ( volatile int i = 0; i < 100 * 1000L; i++) { a = GetX(x + 1 + i / 1000.0); b = GetX(x / 10.0 + i / 1000.01); c = GetX(y / 100.0 + i / 1000.02); d = GetX(y / x * 10 + i / 1000.03); ww = a + b + c + d; a = GetX(x + 10 + i / 1000.04); b = GetX(x / 10.01 + i / 1000.05); c = GetX(y / 100.01 + i / 1000.06); d = GetX(y / x * 101 + i / 1000.07); a = ww - c + a + b + c + d; ww = a + ww; a = GetX(x + 11 + i / 1000.08); b = GetX(x / 10.02 + i / 1000.09); c = GetX(y / 100.02 + i / 1000.10); d = GetX(y / x * 102 + i / 1000.110); ww = a + b + c + d; a = GetX(x + 12 + i / 1000.120); b = GetX(x / 10.03 + i / 1000.130); c = GetX(y / 100.03 + i / 1000.140); d = GetX(i * 1); b = ww - c + a + b + c + d; ww = a + ww; } t1 = GetTick(); bzero(msg, 512); printf ( "ID=%d FlatMov=%f\n time=%d(ms), FlatMov(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 1600.0); printf (msg, "ID=%d FlatMov=%f\n time=%d(ms), FlatMov(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 1600.0); t0 = GetTick(); for ( volatile int i = 0; i < 1000 * 1000L; i++) { a = asinh(x + 1 + i / 1000.0); b = asinh(x / 10.0 + i / 1000.01); c = asinh(y / 100.0 + i / 1000.02); d = asinh(y / x * 10 + i / 1000.03); ww = a + b + c + d; a = asinh(x + 10 + i / 1000.04); b = asinh(x / 10.01 + i / 1000.05); c = asinh(y / 100.01 + i / 1000.06); d = asinh(y / x * 101 + i / 1000.07); a = ww - c + a + b + c + d; ww = a + ww; a = asinh(x + 11 + i / 1000.08); b = asinh(x / 10.02 + i / 1000.09); c = asinh(y / 100.02 + i / 1000.10); d = asinh(y / x * 102 + i / 1000.110); ww = a + b + c + d; a = asinh(x + 12 + i / 1000.120); b = asinh(x / 10.03 + i / 1000.130); c = asinh(y / 100.03 + i / 1000.140); d = asinh(y / x * 103 + i / 1000.150); b = ww - c + a + b + c + d; ww = a + ww; } t1 = GetTick(); printf ( "ID=%d asinh=%f\n time=%d(ms), asinh(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 16000.0); bzero(msg, 512); printf (msg, "ID=%d asinh=%f\n time=%d(ms), asinh(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 16000.0); t0 = GetTick(); for ( volatile int i = 0; i < 1000 * 1000L; i++) { a = logval(x + 1 + i / 1000.0); b = logval(x / 10.0 + i / 1000.01); c = logval(y / 100.0 + i / 1000.02); d = logval(y / x * 10 + i / 1000.03); ww = a + b + c + d; a = logval(x + 10 + i / 1000.04); b = logval(x / 10.01 + i / 1000.05); c = logval(y / 100.01 + i / 1000.06); d = logval(y / x * 101 + i / 1000.07); a = ww - c + a + b + c + d; ww = a + ww; a = logval(x + 11 + i / 1000.08); b = logval(x / 10.02 + i / 1000.09); c = logval(y / 100.02 + i / 1000.10); d = logval(y / x * 102 + i / 1000.110); ww = a + b + c + d; a = logval(x + 12 + i / 1000.120); b = logval(x / 10.03 + i / 1000.130); c = logval(y / 100.03 + i / 1000.140); d = logval(y / x * 103 + i / 1000.150); b = ww - c + a + b + c + d; ww = a + ww; } t1 = GetTick(); bzero(msg, 512); printf ( "ID=%d logval=%f\n time=%d(ms), logval(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 16000.0); printf (msg, "ID=%d logval=%f\n time=%d(ms), logval(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 16000.0); printf ( "---------\n" ); bzero(msg, 512); printf (msg, "-----线程:%d测试结束-----\n" , id); return 0; } |
Android版本
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 | #include <jni.h> #include <string> #include <stdio.h> #include <sys/time.h> #include <stdlib.h> #include <pthread.h> #include<fcntl.h> #include<unistd.h> #include<sys/mman.h> #include<sys/types.h> #include<sys/stat.h> #include <sys/select.h> #include <termios.h> #include<sys/ioctl.h> #include <math.h> #include <assert.h> #include <android/log.h> #define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, "fjsmthlib-log", __VA_ARGS__)) typedef unsigned int DWORD ; void JNI_Callback( char *pData, int id); //回调函数 static JavaVM *g_Jvm = NULL; static jobject g_obj = NULL; extern "C" JNIEXPORT jstring JNICALL Java_test_math_com_mathtest_MainActivity_stringFromJNI( JNIEnv *env, jobject obj /* this */ ) { g_obj = env->NewGlobalRef(obj); //创建全局对象用于回调函数使用 std::string hello = "Hello from C++" ; return env->NewStringUTF(hello.c_str()); } extern "C" JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *reserved) { JNIEnv *env = NULL; jint result = -1; if (vm->GetEnv(( void **) &env, JNI_VERSION_1_6) != JNI_OK) { LOGI( "GetEnv Failed" , g_Jvm); return -1; } assert (env != NULL); /* success -- return valid version number */ result = JNI_VERSION_1_6; g_Jvm = vm; LOGI( "jvm:%08X" , g_Jvm); return result; } void JNI_Callback( char *pData, int id) //回调函数 { JNIEnv *pEnv = NULL; //Attach if (g_Jvm->AttachCurrentThread(&pEnv, NULL) == JNI_OK) { LOGI( "%08X=>%08X=>%08X" , g_Jvm, g_obj, pEnv); jclass Classlib = pEnv->GetObjectClass(g_obj); jobject Objectlib = pEnv->NewLocalRef(g_obj); jmethodID CallBack = pEnv->GetMethodID(Classlib, "onDataCallbk" , "(Ljava/lang/String;I)V" ); jstring text = pEnv->NewStringUTF(pData); pEnv->CallVoidMethod(Objectlib, CallBack, text, id); pEnv->DeleteLocalRef(text); pEnv->DeleteLocalRef(Objectlib); pEnv->DeleteLocalRef(Classlib); //Detach g_Jvm->DetachCurrentThread(); } } int kbhit() { static const int STDIN = 0; static bool initialized = false ; if (!initialized) { // Use termios to turn off line buffering termios term; tcgetattr(STDIN, &term); term.c_lflag &= ~ICANON; tcsetattr(STDIN, TCSANOW, &term); setbuf (stdin, NULL); initialized = true ; } int bytesWaiting; ioctl(STDIN, FIONREAD, &bytesWaiting); return bytesWaiting; } int getch() { struct termios oldt, newt; int ch; tcgetattr(STDIN_FILENO, &oldt); newt = oldt; newt.c_lflag &= ~(ICANON | ECHO); tcsetattr(STDIN_FILENO, TCSANOW, &newt); ch = getchar (); tcsetattr(STDIN_FILENO, TCSANOW, &oldt); return ch; } //#define DWORD unsigned int volatile DWORD GetTick( void ) { struct timeval tv; gettimeofday(&tv, NULL); return (tv.tv_sec * 1000L + tv.tv_usec / 1000); } double logval( double x) { return log (x + sqrt (1 + x * x)); } double GetY( double x) { return (x * sqrt (1 + x * x) + log (x + sqrt (1 + x * x))); } double GetX( double y, int s = 0); double GetX( double y, int s) { int iCount = 0; double x = sqrt (2) * y * sqrt (1 / ( sqrt (4 * y * y + 1) + 1)); double fXLastStart = 0, fXLastEnd = x, fXMiddle = (fXLastEnd + fXLastStart) / 2; double fYMiddle = 0; do { fYMiddle = GetY(fXMiddle); if (fYMiddle > y) { fXLastEnd = fXMiddle; fXMiddle = (fXLastStart + fXMiddle) / 2; } else { fXLastStart = fXMiddle; fXMiddle = (fXLastEnd + fXMiddle) / 2; } iCount++; } while ( fabs (fYMiddle - y) > 0.0001); if (s) printf ( "%d\n" , iCount); return fXMiddle; } void *testMath( void *data) { volatile int id = *(( int *) data); volatile double x, y; x = 100.0; y = 100.0; volatile double a = atan2 (y, x), b = 0, c = 0, d = 0, ww = 0; volatile DWORD t0 = GetTick(); for ( volatile int i = 0; i < 1000 * 1000L; i++) { a = atan2 (y, x + 1 + i / 1000.0); b = sin (x / 10.0 + i / 1000.01); c = cos (y / 100.0 + i / 1000.02); d = sqrt (y / x * 10 + i / 1000.03); ww = a + b + c + d; a = atan2 (y, x + 10 + i / 1000.04); b = sin (x / 10.01 + i / 1000.05); c = cos (y / 100.01 + i / 1000.06); d = sqrt (y / x * 101 + i / 1000.07); a = ww - c + a + b + c + d; ww = a + ww; a = atan2 (y, x + 11 + i / 1000.08); b = sin (x / 10.02 + i / 1000.09); c = cos (y / 100.02 + i / 1000.10); d = sqrt (y / x * 102 + i / 1000.110); ww = a + b + c + d; a = atan2 (y, x + 12 + i / 1000.120); b = sin (x / 10.03 + i / 1000.130); c = cos (y / 100.03 + i / 1000.140); d = sqrt (y / x * 103 + i / 1000.150); b = ww - c + a + b + c + d; ww = a + ww; } volatile DWORD t1 = GetTick(); LOGI( "----------\n" ); char msg[512] = {0}; LOGI( "ID=%d atan2=%f\n time=%d(ms), zhys(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 16000.0); sprintf (msg, "ID=%d atan2=%f\n time=%d(ms), zhys(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 16000.0); JNI_Callback(msg, id); t0 = GetTick(); for ( volatile int i = 0; i < 1000 * 1000L; i++) { a = atan2 (y, x + 1 + i / 1000.0); b = atan2 (y, x / 10.0 + i / 1000.01); c = atan2 (x, y / 100.0 + i / 1000.02); d = atan2 (y, y / x * 10 + i / 1000.03); ww = a + b + c + d; a = atan2 (y, x + 10 + i / 1000.04); b = atan2 (y, x / 10.01 + i / 1000.05); c = atan2 (x, y / 100.01 + i / 1000.06); d = atan2 (x, y / x * 101 + i / 1000.07); a = ww - c + a + b + c + d; ww = a + ww; a = atan2 (y, x + 11 + i / 1000.08); b = atan2 (y, x / 10.02 + i / 1000.09); c = atan2 (x, y / 100.02 + i / 1000.10); d = atan2 (x, y / x * 102 + i / 1000.110); ww = a + b + c + d; a = atan2 (y, x + 12 + i / 1000.120); b = atan2 (y, x / 10.03 + i / 1000.130); c = atan2 (x, y / 100.03 + i / 1000.140); d = atan2 (x, y / x * 103 + i / 1000.150); b = ww - c + a + b + c + d; ww = a + ww; } t1 = GetTick(); LOGI( "ID=%d atan2=%f\n time=%d(ms), atan2(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 16000.0); memset (msg, 0, 512); sprintf (msg, "ID=%d atan2=%f\n time=%d(ms), atan2(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 16000.0); JNI_Callback(msg, id); t0 = GetTick(); for ( volatile int i = 0; i < 100 * 1000L; i++) { a = GetX(x + 1 + i / 1000.0); b = GetX(x / 10.0 + i / 1000.01); c = GetX(y / 100.0 + i / 1000.02); d = GetX(y / x * 10 + i / 1000.03); ww = a + b + c + d; a = GetX(x + 10 + i / 1000.04); b = GetX(x / 10.01 + i / 1000.05); c = GetX(y / 100.01 + i / 1000.06); d = GetX(y / x * 101 + i / 1000.07); a = ww - c + a + b + c + d; ww = a + ww; a = GetX(x + 11 + i / 1000.08); b = GetX(x / 10.02 + i / 1000.09); c = GetX(y / 100.02 + i / 1000.10); d = GetX(y / x * 102 + i / 1000.110); ww = a + b + c + d; a = GetX(x + 12 + i / 1000.120); b = GetX(x / 10.03 + i / 1000.130); c = GetX(y / 100.03 + i / 1000.140); d = GetX(i * 1); b = ww - c + a + b + c + d; ww = a + ww; } t1 = GetTick(); memset (msg, 0, 512); LOGI( "ID=%d FlatMov=%f\n time=%d(ms), FlatMov(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 1600.0); sprintf (msg, "ID=%d FlatMov=%f\n time=%d(ms), FlatMov(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 1600.0); JNI_Callback(msg, id); t0 = GetTick(); for ( volatile int i = 0; i < 1000 * 1000L; i++) { a = asinh(x + 1 + i / 1000.0); b = asinh(x / 10.0 + i / 1000.01); c = asinh(y / 100.0 + i / 1000.02); d = asinh(y / x * 10 + i / 1000.03); ww = a + b + c + d; a = asinh(x + 10 + i / 1000.04); b = asinh(x / 10.01 + i / 1000.05); c = asinh(y / 100.01 + i / 1000.06); d = asinh(y / x * 101 + i / 1000.07); a = ww - c + a + b + c + d; ww = a + ww; a = asinh(x + 11 + i / 1000.08); b = asinh(x / 10.02 + i / 1000.09); c = asinh(y / 100.02 + i / 1000.10); d = asinh(y / x * 102 + i / 1000.110); ww = a + b + c + d; a = asinh(x + 12 + i / 1000.120); b = asinh(x / 10.03 + i / 1000.130); c = asinh(y / 100.03 + i / 1000.140); d = asinh(y / x * 103 + i / 1000.150); b = ww - c + a + b + c + d; ww = a + ww; } t1 = GetTick(); LOGI( "ID=%d asinh=%f\n time=%d(ms), asinh(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 16000.0); memset (msg, 0, 512); sprintf (msg, "ID=%d asinh=%f\n time=%d(ms), asinh(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 16000.0); JNI_Callback(msg, id); t0 = GetTick(); for ( volatile int i = 0; i < 1000 * 1000L; i++) { a = logval(x + 1 + i / 1000.0); b = logval(x / 10.0 + i / 1000.01); c = logval(y / 100.0 + i / 1000.02); d = logval(y / x * 10 + i / 1000.03); ww = a + b + c + d; a = logval(x + 10 + i / 1000.04); b = logval(x / 10.01 + i / 1000.05); c = logval(y / 100.01 + i / 1000.06); d = logval(y / x * 101 + i / 1000.07); a = ww - c + a + b + c + d; ww = a + ww; a = logval(x + 11 + i / 1000.08); b = logval(x / 10.02 + i / 1000.09); c = logval(y / 100.02 + i / 1000.10); d = logval(y / x * 102 + i / 1000.110); ww = a + b + c + d; a = logval(x + 12 + i / 1000.120); b = logval(x / 10.03 + i / 1000.130); c = logval(y / 100.03 + i / 1000.140); d = logval(y / x * 103 + i / 1000.150); b = ww - c + a + b + c + d; ww = a + ww; } t1 = GetTick(); memset (msg, 0, 512); LOGI( "ID=%d logval=%f\n time=%d(ms), logval(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 16000.0); sprintf (msg, "ID=%d logval=%f\n time=%d(ms), logval(time)=%.3f(us)\n" , id, b, t1 - t0, (t1 - t0) / 16000.0); JNI_Callback(msg, id); LOGI( "---------\n" ); memset (msg, 0, 512); sprintf (msg, "-----线程:%d测试结束-----\n" , id); JNI_Callback(msg, id); return NULL; } extern "C" JNIEXPORT void JNICALL Java_test_math_com_mathtest_MainActivity_convert(JNIEnv *env, jobject obj, jbyteArray data) { int outLen = env->GetArrayLength(data); char json[512] = {0}; env->SetByteArrayRegion(data, 0, outLen, (jbyte *) json); } extern "C" JNIEXPORT void JNICALL Java_test_math_com_mathtest_MainActivity_test(JNIEnv *env, jobject obj, jint index) { //testMath((void*)&id[0]); static int id[4]; id[0] = 1; id[1] = 2; id[2] = 3; id[3] = 4; pthread_t thread_ID; pthread_create(&thread_ID, NULL, ( void *(*)( void *)) testMath, ( void *) &id[0]); switch (index) { case 2: //id = 2; pthread_create(&thread_ID, NULL, ( void *(*)( void *)) testMath, ( void *) &id[1]); break ; case 3: //id = 2; pthread_create(&thread_ID, NULL, ( void *(*)( void *)) testMath, ( void *) &id[1]); //id = 3; pthread_create(&thread_ID, NULL, ( void *(*)( void *)) testMath, ( void *) &id[2]); break ; case 4: //id = 2; pthread_create(&thread_ID, NULL, ( void *(*)( void *)) testMath, ( void *) &id[1]); //id = 3; pthread_create(&thread_ID, NULL, ( void *(*)( void *)) testMath, ( void *) &id[2]); //id = 4; pthread_create(&thread_ID, NULL, ( void *(*)( void *)) testMath, ( void *) &id[3]); break ; } } |
收藏的用户(0) X
正在加载信息~
推荐阅读
站点信息
- 文章2302
- 用户1336
- 访客10967509
每日一句
Progress starts with one brave step forward.
进步始于一次勇敢的迈步。
进步始于一次勇敢的迈步。
新会员