When testing APP performance, we need to simulate the user’s operating environment which usually open multiple APPs at the same time. Using following code to…
Leave a CommentCategory: C++
Using following codes to detect the current active APPs The We get following outputs : Listed above are the active APPs.
Leave a CommentGetting crash log We can get crash log for logcat service. Then, we got following outputs. The output messages contain pointer counter where crash, with…
Leave a CommentCurrent memory Using adb command to detect current memory usage. Peak memory Using following script to detect memory many times, and to count the peak…
Leave a CommentEnvironment NDK r23b with CMake. Configuration Adding fllowing codes to CMakeLists.txt. FAQ OpenMP not working for Android NDK Your NDK version is to old, please…
Leave a CommentDescription Qualcomm device CPU uses the cpufreq framework to dynamically adjust the frequency, and the GPU uses the Linux devfreq framework to adjust. Devfreq has…
Leave a Comment//Vector add: vadd -> Vr[i]:=Va[i]+Vb[i], Vr, Va, Vb have equal lane sizes.int8x8_t vadd_s8(int8x8_t a, int8x8_t b); // VADD.I8 d0,d0,d0int16x4_t vadd_s16(int16x4_t a, int16x4_t b); // VADD.I16…
Leave a Comment