pyloess icon indicating copy to clipboard operation
pyloess copied to clipboard

Segmentation fault when fitting 2-dimensional array for class loess

Open yjiangnan opened this issue 6 years ago • 0 comments

According to documentation in the files, class loess is able to handle multi-dimensional features:

loess = _loess.loess
"""
loess : locally weighted estimates. Multi-variate version
:Keywords:
    x : ndarray
        A (n,p) ndarray of independent variables, with n the number of observations
        and p the number of variables.
    y : ndarray
        A (n,) ndarray of observations

However, when I tried it, I simply got "Segmentation fault: 11". The code for reproduction is:

from numpy import *
x = random.randn(20, 5)
y = sum(x, axis=1) + sum(random.randn(20, 5), axis=1)
lo = loess(x, y)
lo.fit()

I tried to narrow down the location for the error by inserting output in the .c codes, and the problem is in line 41 in file loessc.c inside block "interpolate/1.approx": F77_SUB(lowesb)(x, y, weights, diagonal, &one, iv, &liv, &lv, v); This line seems to call a Fortran function lowesb. However, I am not sure how the interaction between C and Fortran works and how to write and debug Fortran codes. Can anyone identify and fix the problem, please?

By the way, I am using the python3-compatible version https://github.com/jcrotinger/pyloess. After the Segmentation fault, the OS shows the following crash report: Process: Python [33329] Path: /Library/Frameworks/Python.framework/Versions/3.6/Resources/Python.app/Contents/MacOS/Python Identifier: Python Version: 3.6.0 (3.6.0) Code Type: X86-64 (Native) Parent Process: bash [79547] Responsible: Python [33329] User ID: 502

Date/Time: 2018-05-17 14:30:20.699 +0200 OS Version: Mac OS X 10.12.3 (16D32) Report Version: 12 Anonymous UUID: 6F848FCA-A0EC-0BDD-4156-6F44A1C752ED

Sleep/Wake UUID: B93DB63A-E8E4-4627-BBE7-B3C3A8F29FD5

Time Awake Since Boot: 10000000 seconds Time Since Wake: 2000000 seconds

System Integrity Protection: enabled

Crashed Thread: 0 Dispatch queue: com.apple.main-thread

Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: EXC_I386_GPFLT Exception Note: EXC_CORPSE_NOTIFY

Termination Signal: Segmentation fault: 11 Termination Reason: Namespace SIGNAL, Code 0xb Terminating Process: exc handler [0]

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 loess.cpython-36m-darwin.so 0x0000000103d2ba90 ehg139 + 1968 1 ??? 0xfff8000000000000 0 + 18444492273895866368

Thread 0 crashed with X86 Thread State (64-bit): rax: 0x0000000000000014 rbx: 0x0000000000000000 rcx: 0x00007fff5bffd780 rdx: 0x00007fff5bffd820 rdi: 0x0000000000000015 rsi: 0xfff8000000000000 rbp: 0x0000000000000000 rsp: 0x00007fff5bffd520 r8: 0x0000000000000008 r9: 0x000000000000012c r10: 0x0000000000000000 r11: 0x0000000000000014 r12: 0x0000000000000000 r13: 0x0000000000000000 r14: 0x000000010117b728 r15: 0x000000010117c178 rip: 0x0000000103d2ba90 rfl: 0x0000000000010202 cr2: 0x0000000103d37cd0

Logical CPU: 3 Error Code: 0x00000000 Trap Number: 13

Binary Images: 0x100000000 - 0x100000ff7 +org.python.python (3.6.0 - 3.6.0) <2D4A19AA-E1F7-61EE-36A7-8CEBCEBC97DA> /Library/Frameworks/Python.framework/Versions/3.6/Resources/Python.app/Contents/MacOS/Python 0x100003000 - 0x100225ff7 +org.python.python (3.6.0, [c] 2001-2016 Python Software Foundation. - 3.6.0) <CE749E25-0273-82E0-A5C9-7EB935377944> /Library/Frameworks/Python.framework/Versions/3.6/Python 0x1003e1000 - 0x1003e2fff +_heapq.cpython-36m-darwin.so (???) <783BE69E-5AA4-9F6E-B147-B3C3A3F3EF22> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/lib-dynload/_heapq.cpython-36m-darwin.so 0x1003e6000 - 0x1003e9ff7 +readline.cpython-36m-darwin.so (???) <E399F7C0-74DE-6C54-156F-8270ECF4D62B> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/lib-dynload/readline.cpython-36m-darwin.so 0x1003f0000 - 0x1003f5fff +math.cpython-36m-darwin.so (???) <2CC32ED4-4583-69FA-C456-55A61B7629F4> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/lib-dynload/math.cpython-36m-darwin.so 0x1022e5000 - 0x102339fe7 +libncursesw.5.dylib (5) <D77551D3-8F51-D267-705E-B6DE332B0647> /Library/Frameworks/Python.framework/Versions/3.6/lib/libncursesw.5.dylib 0x1023ec000 - 0x10257eff7 +multiarray.cpython-36m-darwin.so (???) <7A9A7A31-A920-39EA-B9C3-EC6781E5A79A> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/numpy/core/multiarray.cpython-36m-darwin.so 0x10267e000 - 0x10268dfe7 +_datetime.cpython-36m-darwin.so (???) <CAE04D62-3E08-D6D6-94C6-9645C71C8594> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/lib-dynload/_datetime.cpython-36m-darwin.so 0x102698000 - 0x102781ff7 +umath.cpython-36m-darwin.so (???) <E699D784-1E51-3375-94AA-6DEFC2F1BC3D> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/numpy/core/umath.cpython-36m-darwin.so 0x103049000 - 0x10305ffff +_ctypes.cpython-36m-darwin.so (???) <8F9A3A62-468B-0B3C-8EAF-59EFA813FEBE> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/lib-dynload/_ctypes.cpython-36m-darwin.so 0x103070000 - 0x103075fff +_struct.cpython-36m-darwin.so (???) <2F69DFE7-9168-F3D8-115C-B130897668FE> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/lib-dynload/_struct.cpython-36m-darwin.so 0x1030fe000 - 0x103110ff7 +_pickle.cpython-36m-darwin.so (???) <A2E8174A-CA8A-21BF-3706-524A106431D5> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/lib-dynload/_pickle.cpython-36m-darwin.so 0x1032dd000 - 0x1032ddfff +grp.cpython-36m-darwin.so (???) <F6729CEA-EA3D-44A4-F988-10AC211E9B27> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/lib-dynload/grp.cpython-36m-darwin.so 0x1032e0000 - 0x1032e1fff +_bz2.cpython-36m-darwin.so (???) <5AEBA761-6B71-702E-87E1-562F4EA6E631> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/lib-dynload/_bz2.cpython-36m-darwin.so 0x103325000 - 0x103351fe7 +_lzma.cpython-36m-darwin.so (???) <AE148BB8-3D46-E562-E23C-829C9CAA994C> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/lib-dynload/_lzma.cpython-36m-darwin.so 0x10335b000 - 0x10335dff7 +_hashlib.cpython-36m-darwin.so (???) <ADCF7E6F-7C96-529F-BEAB-8516AFFEDD0E> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/lib-dynload/_hashlib.cpython-36m-darwin.so 0x103362000 - 0x1033b8fe7 +libssl.1.0.0.dylib (1) <2C27D3A0-0FBD-DADB-C3DC-432561E296F7> /Library/Frameworks/Python.framework/Versions/3.6/lib/libssl.1.0.0.dylib 0x1033d4000 - 0x10359ff67 +libcrypto.1.0.0.dylib (1) <06AEF265-29C1-3516-0DBA-AF987A4912AF> /Library/Frameworks/Python.framework/Versions/3.6/lib/libcrypto.1.0.0.dylib 0x103616000 - 0x10361ffff +_blake2.cpython-36m-darwin.so (???) <DE89FD47-E5B9-5BF8-8B43-4C841F917FF6> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/lib-dynload/_blake2.cpython-36m-darwin.so 0x103624000 - 0x103637fff +_sha3.cpython-36m-darwin.so (???) <119224DE-628E-2A02-D17D-C6D42E463850> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/lib-dynload/_sha3.cpython-36m-darwin.so 0x10363d000 - 0x10363dfff +_bisect.cpython-36m-darwin.so (???) <1C3B8A50-7984-9C64-FD25-68ABED8FF974> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/lib-dynload/_bisect.cpython-36m-darwin.so 0x103640000 - 0x103641ff7 +_random.cpython-36m-darwin.so (???) <03FA2286-570B-4244-B42F-C4284A7B7241> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/lib-dynload/_random.cpython-36m-darwin.so 0x103755000 - 0x103756ff7 +lapack_lite.cpython-36m-darwin.so (???) <2DBC9C20-B3FE-3460-9C55-C0FCEC186187> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/numpy/linalg/lapack_lite.cpython-36m-darwin.so 0x10375a000 - 0x103772fff +_umath_linalg.cpython-36m-darwin.so (???) <607BD937-9E24-3E47-A285-768EEFD61A95> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/numpy/linalg/_umath_linalg.cpython-36m-darwin.so 0x1037c0000 - 0x1037c9ff7 +fftpack_lite.cpython-36m-darwin.so (???) <0960632F-DA3F-3E52-95E5-8BFECBAB1C94> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/numpy/fft/fftpack_lite.cpython-36m-darwin.so 0x103940000 - 0x1039f8ff7 +mtrand.cpython-36m-darwin.so (???) <FA62FB23-46C7-3470-B4FF-125B7870D77E> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/numpy/random/mtrand.cpython-36m-darwin.so 0x103af0000 - 0x103af9fe7 +_lowess.cpython-36m-darwin.so (???) <EBD8FA05-E20D-3EB4-82EF-B8490E66D537> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/pyloess/_lowess.cpython-36m-darwin.so 0x103aff000 - 0x103c1dfef +libgfortran.3.dylib (0) <39851E49-D973-36C6-9B95-9004CE8498B3> /usr/local/gfortran/lib/libgfortran.3.dylib 0x103c89000 - 0x103c9efff +libgcc_s.1.dylib (1) <55C5BEDC-9297-3E19-827F-C2B0FA9979E3> /usr/local/gfortran/lib/libgcc_s.1.dylib 0x103ca9000 - 0x103ce0fe7 +libquadmath.0.dylib (0) <A103C3CC-701F-3FAD-8C7C-387FBB5B1D2C> /usr/local/gfortran/lib/libquadmath.0.dylib 0x103cef000 - 0x103d03ff7 +_stl.cpython-36m-darwin.so (???) <1959CB6F-364B-3A12-BFCE-EA6CDE98F354> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/pyloess/_stl.cpython-36m-darwin.so 0x103d0a000 - 0x103d41fe7 +_loess.cpython-36m-darwin.so (???) <88A8DE9A-FF35-3F35-8538-42AF8A9CC9C1> /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/pyloess/_loess.cpython-36m-darwin.so 0x7fff6a8e9000 - 0x7fff6a926267 dyld (421.2) <947FC440-80F9-32F7-A773-6FC418FE1AB7> /usr/lib/dyld 0x7fffcb101000 - 0x7fffcb101fff com.apple.Accelerate (1.11 - Accelerate 1.11) <BDDB2053-BB24-34E4-A452-50D1260BF672> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fffcb11a000 - 0x7fffcb75afe3 com.apple.vImage (8.1 - ???) <77F96C96-725E-31E5-8072-D09C6BD988A2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fffcb75b000 - 0x7fffcb922fef libBLAS.dylib (1185) <0D55CF73-6DBD-3D15-B500-189479638551> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fffcb923000 - 0x7fffcb93afff libBNNS.dylib (14) <43A9B06E-3C21-3CE6-B0C1-99DA172DEEB0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib 0x7fffcb93b000 - 0x7fffcbd46fff libLAPACK.dylib (1185) <E7AE9C48-6E42-3EB7-A257-D48E0CB48D00> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fffcbd47000 - 0x7fffcbd5dfff libLinearAlgebra.dylib (1185) <08F00EFB-B477-3421-906E-3D364E607E6A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fffcbd5e000 - 0x7fffcbd64fff libQuadrature.dylib (3) <120F6228-A3D4-3184-89D7-785ADC2AC715> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib 0x7fffcbd65000 - 0x7fffcbd78ff7 libSparseBLAS.dylib (1185) <912E3D25-27C0-3245-B64C-3CAD43A5D633> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fffcbd79000 - 0x7fffcbec6ff7 libvDSP.dylib (600) <87EF1D0A-1F85-31DD-AD8F-AB31E7D8E73B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fffcbec7000 - 0x7fffcbf7efff libvMisc.dylib (600) <F6EA539E-0A90-3F8A-9ECA-001E46394E29> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fffcbf7f000 - 0x7fffcbf7ffff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <B4B785D8-CB43-3E5D-AE81-1F27885AA112> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fffce6d1000 - 0x7fffceb65ff7 com.apple.CoreFoundation (6.9 - 1348.28) <0F1FAA52-1C06-327E-A170-382B48B1846D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fffe24ef000 - 0x7fffe24f0ff3 libDiagnosticMessagesClient.dylib (102) <422911A4-E273-3E88-BFC4-DF6470E48242> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fffe272e000 - 0x7fffe272fff3 libSystem.B.dylib (1238) <9CB018AF-54E9-300F-82BE-81FE553C9154> /usr/lib/libSystem.B.dylib 0x7fffe28c0000 - 0x7fffe28c0ff3 libauto.dylib (187) <5BBF6A00-CC76-389D-84E7-CA88EDADE683> /usr/lib/libauto.dylib 0x7fffe28d2000 - 0x7fffe28e0ff7 libbz2.1.0.dylib (38) <6FD3B63F-0F86-3A25-BD5B-E243F58792C9> /usr/lib/libbz2.1.0.dylib 0x7fffe28e1000 - 0x7fffe2937ff7 libc++.1.dylib (307.4) <BEE86868-F831-384C-919E-2B286ACFE87C> /usr/lib/libc++.1.dylib 0x7fffe2938000 - 0x7fffe2962fff libc++abi.dylib (307.2) <1CEF8ABB-7E6D-3C2F-8E0A-E7884478DD23> /usr/lib/libc++abi.dylib 0x7fffe2d78000 - 0x7fffe2d96ff3 libedit.3.dylib (48) <2D3593DF-8DF9-3813-B0C2-6938BC77FC79> /usr/lib/libedit.3.dylib 0x7fffe2ea0000 - 0x7fffe30c5ffb libicucore.A.dylib (57149.0.1) <6B5FDA93-AA88-318F-9608-C2A33D602EC7> /usr/lib/libicucore.A.dylib 0x7fffe33a6000 - 0x7fffe33d7ffb libncurses.5.4.dylib (51.30.1) <A8C8F837-86A2-3EC2-B2D2-6E8A267847E4> /usr/lib/libncurses.5.4.dylib 0x7fffe3452000 - 0x7fffe3827127 libobjc.A.dylib (706) <47104A1B-13E8-369F-BC36-27FF465809FD> /usr/lib/libobjc.A.dylib 0x7fffe3c4a000 - 0x7fffe3c5bff3 libz.1.dylib (67) <46E3FFA2-4328-327A-8D34-A03E20BFFB8E> /usr/lib/libz.1.dylib 0x7fffe3c6a000 - 0x7fffe3c6eff7 libcache.dylib (79) <0C8092D3-600F-3ADD-A036-F225B6CDCA43> /usr/lib/system/libcache.dylib 0x7fffe3c6f000 - 0x7fffe3c7aff7 libcommonCrypto.dylib (60092.30.2) <B16E29B6-EC8D-3A8F-9A89-DD9CF35F7C4B> /usr/lib/system/libcommonCrypto.dylib 0x7fffe3c7b000 - 0x7fffe3c82fff libcompiler_rt.dylib (62) <E992E8D9-037C-3454-A366-A25E4D31D6BB> /usr/lib/system/libcompiler_rt.dylib 0x7fffe3c83000 - 0x7fffe3c8bfff libcopyfile.dylib (138) <64E285D9-5485-333B-AEE7-8B0C8FB9275F> /usr/lib/system/libcopyfile.dylib 0x7fffe3c8c000 - 0x7fffe3d0ffdf libcorecrypto.dylib (442.30.20) <2074B932-FD79-30A9-8E90-AF25C49F2AF1> /usr/lib/system/libcorecrypto.dylib 0x7fffe3d10000 - 0x7fffe3d42fff libdispatch.dylib (703.30.5) <EA0CC14E-D559-3802-B4B2-0E8C7579AAC4> /usr/lib/system/libdispatch.dylib 0x7fffe3d43000 - 0x7fffe3d48ff3 libdyld.dylib (421.2) <6F506653-FFF6-3DB8-84F1-109AE3C52F32> /usr/lib/system/libdyld.dylib 0x7fffe3d49000 - 0x7fffe3d49ffb libkeymgr.dylib (28) <1A318923-1200-3B06-B432-5007D82F195D> /usr/lib/system/libkeymgr.dylib 0x7fffe3d57000 - 0x7fffe3d57fff liblaunch.dylib (972.30.7) <15FACC21-079A-3BDF-9AFB-4253EFDEB587> /usr/lib/system/liblaunch.dylib 0x7fffe3d58000 - 0x7fffe3d5dfff libmacho.dylib (894) <A2F38EC1-C37C-3B93-B0E4-36B07C177F8C> /usr/lib/system/libmacho.dylib 0x7fffe3d5e000 - 0x7fffe3d60ff3 libquarantine.dylib (85) <C1D7749F-5F5F-3BB9-BEFC-1F0B9DA941FD> /usr/lib/system/libquarantine.dylib 0x7fffe3d61000 - 0x7fffe3d62ffb libremovefile.dylib (45) <CD42974E-BE0B-39FC-9BFC-8A7540A04DC6> /usr/lib/system/libremovefile.dylib 0x7fffe3d63000 - 0x7fffe3d7bff7 libsystem_asl.dylib (349.30.2) <EFAC72D7-CB13-3DF7-ADF3-EC6635C6F1EA> /usr/lib/system/libsystem_asl.dylib 0x7fffe3d7c000 - 0x7fffe3d7cff7 libsystem_blocks.dylib (67) <B8C3701D-5A91-3D35-999D-2DC8D5393525> /usr/lib/system/libsystem_blocks.dylib 0x7fffe3d7d000 - 0x7fffe3e0afef libsystem_c.dylib (1158.30.7) <2F881962-03CB-3B9D-A782-D98C1BBA4E3D> /usr/lib/system/libsystem_c.dylib 0x7fffe3e0b000 - 0x7fffe3e0effb libsystem_configuration.dylib (888.30.2) <4FE3983C-E4ED-3939-A578-03AD29C99788> /usr/lib/system/libsystem_configuration.dylib 0x7fffe3e0f000 - 0x7fffe3e12fff libsystem_coreservices.dylib (41.4) <1A572B9E-0C47-320F-8C64-7990D0A5FB5A> /usr/lib/system/libsystem_coreservices.dylib 0x7fffe3e13000 - 0x7fffe3e2bff3 libsystem_coretls.dylib (121.31.1) <4676F06D-274D-31BE-B61C-4D7A4AEF4858> /usr/lib/system/libsystem_coretls.dylib 0x7fffe3e2c000 - 0x7fffe3e32fff libsystem_dnssd.dylib (765.30.11) <DC708D84-ED7D-3936-B996-A67C66B8DDAA> /usr/lib/system/libsystem_dnssd.dylib 0x7fffe3e33000 - 0x7fffe3e5cff7 libsystem_info.dylib (503.30.1) <9ED9121C-F111-3FAD-BC2F-C95DEE1C9362> /usr/lib/system/libsystem_info.dylib 0x7fffe3e5d000 - 0x7fffe3e7fff7 libsystem_kernel.dylib (3789.41.3) <B75B128C-7D7A-3318-91CD-82B5A69C5329> /usr/lib/system/libsystem_kernel.dylib 0x7fffe3e80000 - 0x7fffe3ec7fe7 libsystem_m.dylib (3121.4) <266DB92B-A86F-3691-80FB-1B26AD73CFF3> /usr/lib/system/libsystem_m.dylib 0x7fffe3ec8000 - 0x7fffe3ee6ff7 libsystem_malloc.dylib (116.30.3) <F40DEE3B-386A-3529-A3F7-98117ED55BF4> /usr/lib/system/libsystem_malloc.dylib 0x7fffe3ee7000 - 0x7fffe3f3effb libsystem_network.dylib (856.30.16) <4AE368E9-605D-379D-B04C-2AC7455B8250> /usr/lib/system/libsystem_network.dylib 0x7fffe3f3f000 - 0x7fffe3f48ff3 libsystem_networkextension.dylib (563.30.15) <EB020B0C-7DF0-3EEF-8E3C-15DA3C01D687> /usr/lib/system/libsystem_networkextension.dylib 0x7fffe3f49000 - 0x7fffe3f52ff3 libsystem_notify.dylib (165.20.1) <E7FD3A7C-DD07-36E2-9FA4-7561F9F114DA> /usr/lib/system/libsystem_notify.dylib 0x7fffe3f53000 - 0x7fffe3f5bfe7 libsystem_platform.dylib (126.1.2) <3CA06D4E-C00A-36DE-AA65-3A390097D1F6> /usr/lib/system/libsystem_platform.dylib 0x7fffe3f5c000 - 0x7fffe3f66ff7 libsystem_pthread.dylib (218.30.1) <C869ED7C-BE29-3532-8E69-3A8DA1447EDC> /usr/lib/system/libsystem_pthread.dylib 0x7fffe3f67000 - 0x7fffe3f6aff7 libsystem_sandbox.dylib (592.31.1) <7BBFDF96-293F-3DD9-B3A4-7C168280B441> /usr/lib/system/libsystem_sandbox.dylib 0x7fffe3f6b000 - 0x7fffe3f6cfff libsystem_secinit.dylib (24) <5C1F1E47-0F7D-3E25-8DEB-D9DB1F902281> /usr/lib/system/libsystem_secinit.dylib 0x7fffe3f6d000 - 0x7fffe3f74fff libsystem_symptoms.dylib (532.30.6) <5D990CF5-B58F-39F7-B375-99B4EC62CFBD> /usr/lib/system/libsystem_symptoms.dylib 0x7fffe3f75000 - 0x7fffe3f95ff7 libsystem_trace.dylib (518.30.7) <6D34D1EA-2A3C-3D2D-803E-A666E6AEEE52> /usr/lib/system/libsystem_trace.dylib 0x7fffe3f96000 - 0x7fffe3f9bffb libunwind.dylib (35.3) <9F7C2AD8-A9A7-3DE4-828D-B0F0F166AAA0> /usr/lib/system/libunwind.dylib 0x7fffe3f9c000 - 0x7fffe3fc5ff7 libxpc.dylib (972.30.7) <65E41BB6-EBD5-3D93-B0BE-B190CEE4DD93> /usr/lib/system/libxpc.dylib

External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 141 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 793027647 thread_create: 0 thread_set_state: 0

VM Region Summary: ReadOnly portion of Libraries: Total=154.4M resident=0K(0%) swapped_out_or_unallocated=154.4M(100%) Writable regions: Total=63.2M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=63.2M(100%)

                            VIRTUAL   REGION 

REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Kernel Alloc Once 8K 2 MALLOC 46.3M 28 MALLOC guard page 16K 4 MALLOC_LARGE (reserved) 384K 4 reserved VM address space (unallocated) VM_ALLOCATE 8K 3 __DATA 4336K 96 __LINKEDIT 114.6M 35 __TEXT 39.8M 91 __UNICODE 556K 2 __UNIXSTACK 16.0M 2 shared memory 12K 4 =========== ======= ======= TOTAL 221.9M 260 TOTAL, minus reserved VM space 221.6M 260

Model: MacBookPro8,1, BootROM MBP81.0047.B2D, 2 processors, Intel Core i7, 2.8 GHz, 8 GB, SMC 1.68f99 Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x80CE, 0x4D3437314235323733444D302D4348392020 Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1333 MHz, 0x80CE, 0x4D3437314235323733444D302D4348392020 AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.100.24) Bluetooth: Version 5.0.3f1, 3 services, 27 devices, 1 incoming serial ports Network Service: Wi-Fi, AirPort, en1 Serial ATA Device: Samsung SSD 850 EVO 500GB, 500.11 GB Serial ATA Device: MATSHITADVD-R UJ-8A8 USB Device: USB 2.0 Bus USB Device: Hub USB Device: IR Receiver USB Device: USB 2.0 Bus USB Device: FaceTime HD Camera (Built-in) USB Device: Hub USB Device: Apple Internal Keyboard / Trackpad USB Device: BRCM2070 Hub USB Device: Bluetooth USB Host Controller Thunderbolt Bus: MacBook Pro, Apple Inc., 22.1

yjiangnan avatar May 17 '18 12:05 yjiangnan