Skip to content
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

Merge from go #301

Merged
merged 6 commits into from
Sep 26, 2024
Merged
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
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
name: Check .md README files for broken links
name: "Check .md README files for broken links"

on: [pull_request]
on:
push:
branches:
- master

jobs:
markdown-link-check:
runs-on: ubuntu-latest
# check out the latest version of the code
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Checks the status of hyperlinks in .md files in verbose mode
- name: Check links
Expand Down
2 changes: 1 addition & 1 deletion script/app-mlperf-inference-ctuning-cpp-tflite/_cm.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
{
"names": [
"tensorflow",
"tflite"
"tflite"
],
"tags": "get,tensorflow,lib,_tflite"
},
Expand Down
16 changes: 6 additions & 10 deletions script/app-mlperf-inference-mlcommons-python/_cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,6 @@ deps:
enable_if_env:
CM_MLPERF_BACKEND:
- tf
- tflite

## NCNN
- tags: get,generic-python-lib,_package.ncnn
Expand All @@ -305,15 +304,12 @@ deps:
CM_MLPERF_BACKEND:
- ncnn

# - tags: get,generic-python-lib
# names:
# - ml-engine-tflite
# enable_if_env:
# CM_MLPERF_BACKEND:
# - tflite
# CM_MLPERF_DEVICE:
# - tpu

- tags: get,tensorflow,lib,_tflite
names:
- ml-engine-tflite
enable_if_env:
CM_MLPERF_BACKEND:
- tflite


########################################################################
Expand Down
1 change: 1 addition & 0 deletions script/app-mlperf-inference-nvidia/customize.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ def preprocess(i):
for folder in folders:
onnx_model_path = os.path.join(env['MLPERF_SCRATCH_PATH'], 'models', 'SDXL', 'onnx_models', folder, 'model.onnx')
if not os.path.exists(onnx_model_path):
env['CM_REQUIRE_SDXL_MODEL_DOWNLOAD'] = 'yes'
cmds.append(f"make download_model BENCHMARKS='{model_name}'")
break
else:
Expand Down
Loading