Skip to content
Closed
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
10 changes: 6 additions & 4 deletions examples/xnnpack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.

# pyre-unsafe

from dataclasses import dataclass


Expand All @@ -24,14 +26,14 @@ class XNNPACKOptions(object):
"mv3": XNNPACKOptions(True, True),
"resnet18": XNNPACKOptions(True, True),
"resnet50": XNNPACKOptions(True, True),
"vit": XNNPACKOptions(False, True), # T161242362
"vit": XNNPACKOptions(True, True),
"w2l": XNNPACKOptions(True, True),
"edsr": XNNPACKOptions(True, True),
"mobilebert": XNNPACKOptions(False, True), # T197452682
"mobilebert": XNNPACKOptions(True, True),
"llama2": XNNPACKOptions(False, True),
"emformer_join": XNNPACKOptions(True, True),
"emformer_predict": XNNPACKOptions(False, True), # T197457838
"emformer_transcribe": XNNPACKOptions(False, True), # T197449765
"emformer_predict": XNNPACKOptions(True, True),
"emformer_transcribe": XNNPACKOptions(True, True),
}


Expand Down
Loading