5. misc¶
Code for various useful things that don’t fit anywhere else. Currently this includes:
Automatically printing the status of long loops
Grouping number arrays by id or generating neighbor lists effiently
5.1. Example Usage¶
The StatusCounter
class can be used either directly as an iterator,
or can be explicitly created and then iterated over. The latter approach also
allows outputing a variable message during the computation.
from ilpm import misc
import numpy as np
import time
#These are the values over which we are going to compute stuff.
values = np.linspace(0, 1.0, 10000)
#Use the status counter as an iterator -- this automatically prints the
# status message as we loop!
for val in misc.StatusCounter(values, 'Squaring stuff...'):
square = val**2 #Do something
time.sleep(1E-3) #This something is too fast, so lets slow it.
#Create it as a named object so we can change the print message
stat = misc.StatusCounter(values, 'Squaring stuff...')
for val in stat:
square = val**2 #Do something
stat.message('%.3f -> %.3f' % (val, square)) #Print the result as we compute.
time.sleep(1E-3) #This something is too fast, so lets slow it.
The first loop outputs the following message as it is computing:
Squaring stuff... 49% (0:00:05 remaining)
The second includes an ongoing status message, e.g.:
Squaring stuff... 49% (0:00:05 remaining) [0.498 -> 0.248]
5.2. Overview¶
|
A class for printing status messages for long computations. |
|
Create an object which returns the values of objects with a given id. |
|
Generate a object for finding point neighbors quickly. |
5.3. Classes¶
-
class
ilpm.misc.
StatusCounter
(count, msg='Calculating...', min_time=0.03333333333333333)[source]¶ Bases:
object
A class for printing status messages for long computations.
- Parameters
- countint or iterable object
The number of items or the items over which to iterate.
- msgstring
The status message
- min_timefloat, optional (default: 1./30)
The minimum time before a new mssage is printed. Used to prevent very fast updates from slowing down computations (print to stderr can be slow!)
Methods
message
(self, msg)Change the print message during a computation.
print_msg
(self, msg[, final])Print the message (usually handled automatically.)
update
(self[, extra_msg])Increment the counter manually (usually handlded automatically.)
-
class
ilpm.misc.
GroupById
(ids, values=None, missing=None)[source]¶ Bases:
object
Create an object which returns the values of objects with a given id.
After it is created, behaves like a dictionary object which returns numpy arrays of values with varying length, where missing values return the value specified in
missing
.Items may also be accessed with lists or arrays of ids.
Lists of keys return lists of numpy arrays
Arrays of keys return a concatenated array of the values
Example usage:
from ilpm import misc, vector #Create some random points X = (np.random.rand(100, 3) - 0.5) * 10 #Our id is going to be numbered by radial shell, e.g. a point with radius # r=5.2... will have id 5. ids = vector.mag(X).astype('i') #Make the group X_by_r = misc.GroupById(ids, X) #Lets see whats in there. for ir in sorted(X_by_r.keys()): X = X_by_r[ir] r = vector.mag(X) print 'key: %d, %2d values ranging from r = %.2f - %.2f' % (ir, len(r), r.min(), r.max()) #What if we wanted all particles with radii from 2-5? ids = np.arange(2, 5) X = X_by_r[ids] r = vector.mag(X) print 'keys: %s, %2d values ranging from r = %.2f - %.2f' % (repr(ids), len(r), r.min(), r.max())
Sample output:
key: 1, 2 values ranging from r = 1.45 - 1.65 key: 2, 2 values ranging from r = 2.35 - 2.96 key: 3, 17 values ranging from r = 3.00 - 3.93 key: 4, 23 values ranging from r = 4.11 - 4.99 key: 5, 32 values ranging from r = 5.03 - 5.90 key: 6, 18 values ranging from r = 6.05 - 6.97 key: 7, 6 values ranging from r = 7.13 - 7.75 keys: array([2, 3, 4]), 42 values ranging from r = 2.35 - 4.99
- Parameters
- ids1D numpy array
A list of id’s.
- values(len(id), …) numpy array, optional
The value which correspond to each id. If not specified, indices are returned instead of values (i.e.
value = arange(len(id))
)- missingany object, optional (default: empty numpy array)
The default value to return if there are no objects with this id. If not specified, returns an empty numpy array with the same data type as values.
Methods
keys
(self)Return the keys which have items in them.
-
class
ilpm.misc.
NeighborList
(cutoff, points)[source]¶ Bases:
object
Generate a object for finding point neighbors quickly.
Note: using this class is only faster than brute force for > 1000 points. However, for very large numbers of points (> 10,000) it is quite fast.
- Parameters
- cutofffloat
The default radius to consider a particle a “neighbor”. Although different radii may be requested later, this sets the box width for the cell-list, so optimially it is the average required radius. Note: the cutoff should be more than 2**20 ~ 1E6 times the total separation.
- pointsvector array
Points to put in the list
Methods
indices_within_r
(self, P0[, r])Return the indices of all points within a specified radius.
-
class
ilpm.misc.
TestCases
(methodName='runTest')[source]¶ Bases:
unittest.case.TestCase
Methods
__call__
(self, \*args, \*\*kwds)Call self as a function.
addCleanup
(self, function, \*args, \*\*kwargs)Add a function, with arguments, to be called when the test is completed.
addTypeEqualityFunc
(self, typeobj, function)Add a type specific assertEqual style function to compare a type.
assertAlmostEqual
(self, first, second[, …])Fail if the two objects are unequal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the difference between the two objects is more than the given delta.
assertCountEqual
(self, first, second[, msg])An unordered sequence comparison asserting that the same elements, regardless of order.
assertDictContainsSubset
(self, subset, …)Checks whether dictionary is a superset of subset.
assertEqual
(self, first, second[, msg])Fail if the two objects are unequal as determined by the ‘==’ operator.
assertFalse
(self, expr[, msg])Check that the expression is false.
assertGreater
(self, a, b[, msg])Just like self.assertTrue(a > b), but with a nicer default message.
assertGreaterEqual
(self, a, b[, msg])Just like self.assertTrue(a >= b), but with a nicer default message.
assertIn
(self, member, container[, msg])Just like self.assertTrue(a in b), but with a nicer default message.
assertIs
(self, expr1, expr2[, msg])Just like self.assertTrue(a is b), but with a nicer default message.
assertIsInstance
(self, obj, cls[, msg])Same as self.assertTrue(isinstance(obj, cls)), with a nicer default message.
assertIsNone
(self, obj[, msg])Same as self.assertTrue(obj is None), with a nicer default message.
assertIsNot
(self, expr1, expr2[, msg])Just like self.assertTrue(a is not b), but with a nicer default message.
assertIsNotNone
(self, obj[, msg])Included for symmetry with assertIsNone.
assertLess
(self, a, b[, msg])Just like self.assertTrue(a < b), but with a nicer default message.
assertLessEqual
(self, a, b[, msg])Just like self.assertTrue(a <= b), but with a nicer default message.
assertListEqual
(self, list1, list2[, msg])A list-specific equality assertion.
assertLogs
(self[, logger, level])Fail unless a log message of level level or higher is emitted on logger_name or its children.
assertMultiLineEqual
(self, first, second[, msg])Assert that two multi-line strings are equal.
assertNotAlmostEqual
(self, first, second[, …])Fail if the two objects are equal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the difference between the two objects is less than the given delta.
assertNotEqual
(self, first, second[, msg])Fail if the two objects are equal as determined by the ‘!=’ operator.
assertNotIn
(self, member, container[, msg])Just like self.assertTrue(a not in b), but with a nicer default message.
assertNotIsInstance
(self, obj, cls[, msg])Included for symmetry with assertIsInstance.
assertNotRegex
(self, text, unexpected_regex)Fail the test if the text matches the regular expression.
assertRaises
(self, expected_exception, …)Fail unless an exception of class expected_exception is raised by the callable when invoked with specified positional and keyword arguments.
assertRaisesRegex
(self, expected_exception, …)Asserts that the message in a raised exception matches a regex.
assertRegex
(self, text, expected_regex[, msg])Fail the test unless the text matches the regular expression.
assertSequenceEqual
(self, seq1, seq2[, msg, …])An equality assertion for ordered sequences (like lists and tuples).
assertSetEqual
(self, set1, set2[, msg])A set-specific equality assertion.
assertTrue
(self, expr[, msg])Check that the expression is true.
assertTupleEqual
(self, tuple1, tuple2[, msg])A tuple-specific equality assertion.
assertWarns
(self, expected_warning, \*args, …)Fail unless a warning of class warnClass is triggered by the callable when invoked with specified positional and keyword arguments.
assertWarnsRegex
(self, expected_warning, …)Asserts that the message in a triggered warning matches a regexp.
debug
(self)Run the test without collecting errors in a TestResult
doCleanups
(self)Execute all cleanup functions.
fail
(self[, msg])Fail immediately, with the given message.
failureException
alias of
builtins.AssertionError
setUp
(self)Hook method for setting up the test fixture before exercising it.
setUpClass
()Hook method for setting up class fixture before running tests in the class.
shortDescription
(self)Returns a one-line description of the test, or None if no description has been provided.
skipTest
(self, reason)Skip this test.
subTest
(self[, msg])Return a context manager that will return the enclosed block of code in a subtest identified by the optional message and keyword parameters.
tearDown
(self)Hook method for deconstructing the test fixture after testing it.
tearDownClass
()Hook method for deconstructing the class fixture after running all tests in the class.
assertAlmostEquals
assertDictEqual
assertEquals
assertNotAlmostEquals
assertNotEquals
assertNotRegexpMatches
assertRaisesRegexp
assertRegexpMatches
assert_
countTestCases
defaultTestResult
failIf
failIfAlmostEqual
failIfEqual
failUnless
failUnlessAlmostEqual
failUnlessEqual
failUnlessRaises
id
run
test_GroupById
test_fmt_time
test_status_counter