Code Monkey home page Code Monkey logo

Comments (10)

jonashaag avatar jonashaag commented on May 20, 2024

First, if your program takes only a few milliseconds to run, that may be too fast for vmprof to collect any data at all. Second, vmprof collects only data about pure Python code, but numpy is implemented almost entirely in C, which is why you won't see anything useful with your example.

Btw does anyone know of a Python profiler that can look into the C stack?

from vmprof-python.

methane avatar methane commented on May 20, 2024

Released version doesn't support Python 3.5.1. See #60

from vmprof-python.

trofimander avatar trofimander commented on May 20, 2024

@methane Thanks!

from vmprof-python.

trofimander avatar trofimander commented on May 20, 2024

@fijal Could you please release the fix?

from vmprof-python.

fijal avatar fijal commented on May 20, 2024

I've release the fix

from vmprof-python.

fijal avatar fijal commented on May 20, 2024

To be precise: I've release the mentioned pull request, but not the fix for this issue, will reopen that one

from vmprof-python.

planrich avatar planrich commented on May 20, 2024

I have tried the same script now with 0.4.3 on mac os x 10.12.3. It revealed an issue on mac: a signal is delivered after vmprof.disable() is called (which terminated the program with SIGPROF). The signal handler is now set to SIG_IGN (signal ignore) which passes. I'm trying to find a better solution though.

Here is the native profile:
http://vmprof.com/#/567aa150-5927-4867-b22d-dbb67ac824ac

from vmprof-python.

liufuyang avatar liufuyang commented on May 20, 2024

Okay I seem encountered this issue, tired with python 3.5.1 or 3.6.1 both not working.
vmprof version 0.4.3

python -m vmprof -o output.log xx.py

(xx.py print stuff and output.log generated)

vmprofshow output.log

Traceback (most recent call last):
  File "/Users/fuyangliu/Tradeshift/supplier-matching/python3.6-env/bin/vmprofshow", line 11, in <module>
    sys.exit(main())
  File "/Users/fuyangliu/Tradeshift/supplier-matching/python3.6-env/lib/python3.6/site-packages/vmprof/show.py", line 160, in main
    pp.show(args.profile)
  File "/Users/fuyangliu/Tradeshift/supplier-matching/python3.6-env/lib/python3.6/site-packages/vmprof/show.py", line 64, in show
    tree = stats.get_tree()
  File "/Users/fuyangliu/Tradeshift/supplier-matching/python3.6-env/lib/python3.6/site-packages/vmprof/stats.py", line 106, in get_tree
    top = self.get_top(self.profiles)
  File "/Users/fuyangliu/Tradeshift/supplier-matching/python3.6-env/lib/python3.6/site-packages/vmprof/stats.py", line 97, in get_top
    raise EmptyProfileFile()
vmprof.stats.EmptyProfileFile

Is this a related problem?

Stuff in xx.py

def f_a():
    for x in range(100):
        print(x)

if __name__=='__main__':
    f_a()

from vmprof-python.

planrich avatar planrich commented on May 20, 2024

it seems that 100 iterations is not enough for a single signal to occur. I get the same issue, try to run at least 1000 iterations...

from vmprof-python.

planrich avatar planrich commented on May 20, 2024

It now displays the following (the warning is only displayed if the profiling took less than 1 second):

WARNING: The profiling completed in less than 1 seconds. Please run your programs longer!
No stack trace has been recorded (profile is empty)! Did your program not run long enough?

from vmprof-python.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.