Richard Barnes
Richard Barnes
Despite looking at the [recommended repo](https://github.com/arashno/tensorflow_multigpu_imagenet), it's still a little unclear how to use this. An example include an appropriately-formatted input file and a couple of example images would go...
Calling spatial join on a dataset creates unacceptable and persistent memory usage. The following screenshot demonstrates the issue:  I have copied the spatial join source...
Summary: `USE_CUDA` is needed in the bazel definitions to ensure that `USE_CUDA` is applied everywhere it should be. Test Plan: Sandcastle Differential Revision: D42616147
Summary: Fixes: ``` [2023-05-30T10:43:47.365-07:00] buck-out/v2/gen/fbcode/421793878b383059/folly/detail/__simd_any_of__/buck-headers/folly/detail/SimdAnyOf.h:37:28: error: declaration of ‘p’ shadows a member of ‘folly::simd_detail::AnyOfDelegate’ [-Werror=shadow] [CONTEXT] [2023-05-30T10:43:47.365-07:00] 37 | explicit AnyOfDelegate(P p) : p(p) {} [CONTEXT] [2023-05-30T10:43:47.365-07:00] | ``` Differential...
When trying to build a project with ``` #include ``` using LLVM-15 on both the current master (3259bf65d455a870639474cd6340f510fab54c3a) and v3.8 I see warnings and a few errors that prevent usage:...
Summary: With LLVM-15, `&&` and `||` are required for boolean operands, rather than `&` and `|` which can be confused for bitwise operations. Fixing such ambiguity helps makes our code...
Using ``` __attribute__((fallthrough)); ``` allows the compiler to check for implicit fallthroughs with `-Wimplicit-fallthrough`, which has found _many_ issues in the codebases I've used it on. It would be helpful...
**Including this here for documentation purposes** In the following test program ```python3 import cvxpy as cp def cp_log_ratio_norm(a, b): # Both `a * cp.inv_pos(b)` and `a / b` make this...
# Pyre Feature Request **Is your feature request related to a problem? Please describe.** I've run `pyre --output=json` and written a small script to filter this: ``` #!/usr/bin/env python3 import...