Skip to content

Commit 4510e1a

Browse files
jackm321Wei Wei
authored andcommitted
Use fba_enablement and gpu_enablement oncall names instead of aiacc except for NNPI-related items (#42)
Summary: Pull Request resolved: pytorch/fx2trt#42 Reviewed By: scottxu0730, houseroad, wushirong Differential Revision: D35266329 fbshipit-source-id: a1fcb04dfacce03d9b7d3fff7758f1956631166f
1 parent 4d161ff commit 4510e1a

16 files changed

+16
-16
lines changed

test/converters/acc_op/test_transpose_convolution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Owner(s): ["oncall: aiacc"]
1+
# Owner(s): ["oncall: gpu_enablement"]
22

33
import torch
44
import fx2trt_oss.tracer.acc_tracer.acc_ops as acc_ops

test/converters/vanilla/test_add.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Owner(s): ["oncall: aiacc"]
1+
# Owner(s): ["oncall: gpu_enablement"]
22

33
import operator
44

test/converters/vanilla/test_convolution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Owner(s): ["oncall: aiacc"]
1+
# Owner(s): ["oncall: gpu_enablement"]
22

33
import torch
44
import torch.fx

test/core/test_import_fx2trt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
# (c) Facebook, Inc. and its affiliates. Confidential and proprietary.
33

4-
# Owner(s): ["oncall: aiacc"]
4+
# Owner(s): ["oncall: gpu_enablement"]
55

66
# Test that this import should not trigger any error when run
77
# in non-GPU hosts, or in any build mode.

test/core/test_input_tensor_spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Owner(s): ["oncall: aiacc"]
1+
# Owner(s): ["oncall: gpu_enablement"]
22

33
from typing import List, Optional
44

test/core/test_trt_module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Owner(s): ["oncall: aiacc"]
1+
# Owner(s): ["oncall: gpu_enablement"]
22

33
import os
44

test/passes/test_fuse_permute_linear_trt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Owner(s): ["oncall: aiacc"]
1+
# Owner(s): ["oncall: gpu_enablement"]
22

33
import torch
44
import fx2trt_oss.tracer.acc_tracer.acc_ops as acc_ops

test/passes/test_fuse_permute_matmul_trt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Owner(s): ["oncall: aiacc"]
1+
# Owner(s): ["oncall: gpu_enablement"]
22

33
import torch
44
import fx2trt_oss.tracer.acc_tracer.acc_ops as acc_ops

test/passes/test_multi_fuse_trt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Owner(s): ["oncall: aiacc"]
1+
# Owner(s): ["oncall: gpu_enablement"]
22

33
import torch
44
import fx2trt_oss.tracer.acc_tracer.acc_ops as acc_ops

test/passes/test_remove_duplicate_output_args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Owner(s): ["oncall: aiacc"]
1+
# Owner(s): ["oncall: gpu_enablement"]
22

33
import logging
44

test/trt_lower/test_diagnostics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Owner(s): ["oncall: aiacc"]
1+
# Owner(s): ["oncall: gpu_enablement"]
22
from typing import Union
33
from unittest import TestCase
44
import functools

test/trt_lower/test_fx2trt_lower.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Owner(s): ["oncall: aiacc"]
1+
# Owner(s): ["oncall: gpu_enablement"]
22

33
import logging
44
import unittest

test/trt_lower/test_observer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Owner(s): ["oncall: aiacc"]
1+
# Owner(s): ["oncall: gpu_enablement"]
22
import typing as t
33
from unittest import TestCase
44
import functools

test/trt_lower/test_observer_gpu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Owner(s): ["oncall: aiacc"]
1+
# Owner(s): ["oncall: gpu_enablement"]
22
from unittest import TestCase
33
import functools
44
import fx2trt_oss.fx.observer as ob

test/trt_lower/trt_operator_supported_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Owner(s): ["oncall: aiacc"]
1+
# Owner(s): ["oncall: gpu_enablement"]
22

33
import fx2trt_oss.tracer.acc_tracer.acc_ops # noqa: F401
44
import torch

test/trt_lower/trt_splitter_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Owner(s): ["oncall: aiacc"]
1+
# Owner(s): ["oncall: gpu_enablement"]
22

33
import operator
44

0 commit comments

Comments
 (0)