Replies: 5 comments
-
Wouldn't computing the mean and std be a significant cost? (O(N)) |
Beta Was this translation helpful? Give feedback.
-
I don't think it would be very significant, given the number of gathers and scatters that occur in order to preprocess and postprocess the data for |
Beta Was this translation helpful? Give feedback.
-
We should be eliminating Python overhead, not adding to it. Sounds like more work should be pushed to device code or at least C++ to make this more efficient. |
Beta Was this translation helpful? Give feedback.
-
Is determining the scale this way something that could be done by the user? If so, it seems like a good candidate to put in docs, or maybe even add a function that they can call beforehand. |
Beta Was this translation helpful? Give feedback.
-
Sorry, the title is misleaing. I'm not proposing that we add auto scaling to the fundamental quadtree point in polygon operations, just to its use with |
Beta Was this translation helpful? Give feedback.
-
What is your question?
Hey @zhangjianting @trxcllnt how do you feel about automatically computing the scale parameter in the implementation of$\frac{mean}{10}$ instead?
.contains_properly
? I was thinking of making it a ratio of the mean standard deviation of the x and y points that are going to be used to create the quadtree. If I used the mean of the x and y standard deviations, would it be better to use the mean unmodified or useBeta Was this translation helpful? Give feedback.
All reactions