-
Notifications
You must be signed in to change notification settings - Fork 7
Consider using quantities #166
Copy link
Copy link
Open
Labels
part:clientAffects the client codeAffects the client codetype:enhancementNew feature or enhancement visitble to usersNew feature or enhancement visitble to users
Milestone
Metadata
Metadata
Assignees
Labels
part:clientAffects the client codeAffects the client codetype:enhancementNew feature or enhancement visitble to usersNew feature or enhancement visitble to users
Type
Fields
Give feedbackNo fields configured for Enhancement.
So far the client doesn't depend on
quantitiesand use plainfloats.We could add
quantities, but if we do, we probably want to use it everywhere, including streaming data.This adds overhead though, as creating new instances of non built-in types in Python is very slow compared to working with plain
floats, and maybe it is better to keep the client simple and performant as it should be mostly used only for low-level stuff.Using
quantitiesalso means maintaining a map ofMetric->Quantity, for example for streaming data and bounds.Originally posted by @llucax in #165 (comment)