Richard Barnes
Richard Barnes
Is there a way to clip a great circle arc to a cell? I see two potential approaches. 1. Use `S2::GetIntersection` to find intersections between cell edges and the arc....
I have a need to iterate over every cell within a region using `GetInteriorCovering` and `GetCovering`. I don't need the minimal cell set. Using the existing `GetInteriorCovering` and `GetCovering` functions...
The `S2CellId::pos()` method returns a cell id as number 0..2^61 of all the level-30 cells on a face of the cube. Sometimes, though, we would like to know the cell...
I've been working on making the query functions reentrant. It looks as though the primary challenge to this is that the memory pool is shared, causing contention or race conditions....
I run ```julia JuMP.optimize!(m) ``` and get the output ``` ----------------------------------------------------------------------------------------------------------------------------- | Iteration # | Nodes | Lower Bound | Upper Bound | Gap | Ratio | Time | Time...
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/62653 This consolidates checks determining whether tensors live on the same device into a single line using template parameter packs to unroll the check code. The...
Differential Revision: D29034876