Lines Matching +full:runs +full:- +full:on
14 …OS 2009) <https://users.cs.northwestern.edu/~robby/courses/322-2013-spring/mytkowicz-wrong-data.pd…
24 * Disable as many processes or services as possible on the target system.
31 by passing ``-DLLVM_BUILD_STATIC=ON`` to cmake.
33 * Try to avoid storage. On some systems you can use tmpfs. Putting the
34 program, inputs and outputs on tmpfs avoids touching a real storage
37 To mount it (on linux and freebsd at least)::
39 mount -t tmpfs -o size=<XX>g none dir_to_mount
57 so that perf runs in one and your program in another::
59 cset shield -c N1,N2 -k on
61 This will move all threads out of N1 and N2. The ``-k on`` means
74 cset shield --exec -- perf stat -r 10 <cmd>
76 This will run the command after ``--`` in the isolated cpus. The
77 particular perf command runs the ``<cmd>`` 10 times and reports
83 -----------