Skip to content

Commit

Permalink
Fixes some WIP models in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunsuresh committed Jun 5, 2024
1 parent 63fcc60 commit 5e49864
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,21 @@ def mlperf_inference_implementation_readme(spaces, model, implementation):
frameworks = [ "Pytorch" ]

elif implementation == "nvidia":
if model in [ "sdxl", "llama2-99", "llama2-99.9" ]:
return pre_space+" WIP"
devices = [ "CUDA" ]
frameworks = [ "TensorRT" ]

elif implementation == "intel":
if model not in [ "bert-99", "bert-99.9", "gptj-99", "gptj-99.9" ]:
return pre_space+" WIP"
devices = [ "CPU" ]
frameworks = [ "Pytorch" ]

elif implementation == "qualcomm":
if model not in [ "resnet50", "retinanet", "bert-99", "bert-99.9" ]:
return pre_space+" WIP"

devices = [ "QAIC" ]
frameworks = [ "Glow" ]

Expand Down

0 comments on commit 5e49864

Please sign in to comment.