Skip to content

Adding NUMA support for pytorch #3926

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fbgemm_gpu/test/sparse/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import fbgemm_gpu
import torch
from hypothesis import HealthCheck, settings
from torch._utils_internal import get_file_path_2 # @manual=//caffe2:utils_internal
from torch._utils_internal import get_file_path_2 # @manual=//caffe2:_utils_internal
from torch.testing._internal.optests import generate_opcheck_tests

# pyre-fixme[16]: Module `fbgemm_gpu` has no attribute `open_source`.
Expand Down
2 changes: 1 addition & 1 deletion fbgemm_gpu/test/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def decorator(test_class: unittest.TestCase) -> unittest.TestCase:
if not has_optests():
return test_class
import torch.testing._internal.optests as optests
from torch._utils_internal import ( # @manual=//caffe2:utils_internal
from torch._utils_internal import ( # @manual=//caffe2:_utils_internal
get_file_path_2,
)

Expand Down
Loading