forked from facebookresearch/PyTorch-BigGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: - GPU tests don't work on devgpu due to the infamous cudart issue. This workaround gets it working. Shrug. - `buck test` is annoying because it eats stdout/stderr from the child processes. Instead I want to run the tests directly from python, but I need an ifbpy with a `torchbiggraph` dependency. So added this target. Reviewed By: lw Differential Revision: D29560732 fbshipit-source-id: 4198b2636896327f6d6b67477db731f760bde135
- Loading branch information
1 parent
24bd54e
commit c51af52
Showing
2 changed files
with
17 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env python3 | ||
import warnings | ||
|
||
from libfb.py.ipython_par import launch_ipython | ||
|
||
|
||
warnings.simplefilter("ignore", category=DeprecationWarning) | ||
warnings.simplefilter("ignore", category=ResourceWarning) | ||
|
||
|
||
launch_ipython() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters