Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/ci_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ on:

jobs:
ci:
uses: InfiniTensor/ci/.github/workflows/infiniops-ci.yml@c6bf369739f16e759f46fd466f586c51c59f26c3
uses: InfiniTensor/ci/.github/workflows/infiniops-ci.yml@ab56f5444799953e29bf495216b6201ef0448213
with:
config_path: .github/ci_config.yml
ci_ref: c6bf369739f16e759f46fd466f586c51c59f26c3
ci_ref: ab56f5444799953e29bf495216b6201ef0448213
max_parallel: 10
platform: ${{ github.event_name == 'workflow_dispatch' && (inputs.platform == 'all' && 'nvidia,iluvatar,metax,moore,cambricon,ascend' || inputs.platform) || 'nvidia,iluvatar,metax,moore,cambricon,ascend' }}
secrets: inherit
4 changes: 2 additions & 2 deletions .github/workflows/ci_v2_shadow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ on:

jobs:
ci-v2-shadow:
uses: InfiniTensor/ci/.github/workflows/infiniops-ci-v2-shadow.yml@c6bf369739f16e759f46fd466f586c51c59f26c3
uses: InfiniTensor/ci/.github/workflows/infiniops-ci-v2-shadow.yml@ab56f5444799953e29bf495216b6201ef0448213
with:
config_path: .github/ci_config.yml
ci_ref: c6bf369739f16e759f46fd466f586c51c59f26c3
ci_ref: ab56f5444799953e29bf495216b6201ef0448213
max_parallel: 10
platform: ${{ github.event_name == 'workflow_dispatch' && (inputs.platform == 'all' && 'nvidia,iluvatar,metax,moore,cambricon,ascend' || inputs.platform == 'active' && 'nvidia,iluvatar,metax,moore,cambricon,ascend' || inputs.platform) || 'nvidia,iluvatar,metax,moore,cambricon,ascend' }}
secrets: inherit
4 changes: 4 additions & 0 deletions tests/test_torch_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,11 @@ def _list_default(aten_type):
_VENDOR_CRASH_OPS = frozenset(
{
("npu", "mish"),
("npu", "mse_loss"),
("npu", "nonzero"),
("npu", "nuclear_norm"),
("npu", "smooth_l1_loss"),
("npu", "soft_margin_loss"),
("npu", "_linalg_svd"),
("npu", "svd"),
}
Expand Down
Loading