diff --git a/.github/workflows/test-cm-based-submission-generation.yml b/.github/workflows/test-cm-based-submission-generation.yml index 6016a99b7..8ac9d3814 100644 --- a/.github/workflows/test-cm-based-submission-generation.yml +++ b/.github/workflows/test-cm-based-submission-generation.yml @@ -62,6 +62,7 @@ jobs: - name: Pull repo where test cases are uploaded run: | git clone -b submission-generation-tests https://github.com/mlcommons/inference.git submission_generation_tests + - name: Run Submission Generation - ${{ matrix.case }} ${{ matrix.action }} ${{ matrix.category }} ${{ matrix.division }} continue-on-error: true run: | diff --git a/.github/workflows/test-mlperf-inference-resnet50.yml b/.github/workflows/test-mlperf-inference-resnet50.yml index 613457691..bdf573899 100644 --- a/.github/workflows/test-mlperf-inference-resnet50.yml +++ b/.github/workflows/test-mlperf-inference-resnet50.yml @@ -67,12 +67,11 @@ jobs: keeper-secret-config: ${{ secrets.KSM_CONFIG }} secrets: |- ubwkjh-Ii8UJDpG2EoU6GQ/field/Access Token > env:PAT # Fetch PAT and store in environment variable - - name: Push Results - if: github.repository_owner == 'mlcommons_off' env: - GITHUB_TOKEN: ${{ env.PAT }} + PAT: ${{ env.PAT }} + if: github.repository_owner == 'mlcommons' run: | git config --global user.name mlcommons-bot git config --global user.email "mlcommons-bot@users.noreply.github.com" - cm run script --tags=push,github,mlperf,inference,submission --env.CM_GITHUB_PAT=${{ env.PAT }} --repo_url=https://github.com/mlcommons/mlperf_inference_test_submissions_v5.0 --repo_branch=auto-update --commit_message="Results from R50 GH action on ${{ matrix.os }}" --quiet + cm run script --tags=push,github,mlperf,inference,submission --env.CM_GITHUB_PAT=$PAT --repo_url=https://github.com/mlcommons/mlperf_inference_test_submissions_v5.0 --repo_branch=auto-update --commit_message="Results from R50 GH action on ${{ matrix.os }}" --quiet diff --git a/.github/workflows/test-nvidia-mlperf-inference-implementations.yml b/.github/workflows/test-nvidia-mlperf-inference-implementations.yml index 1d74b4b47..38f2af0c7 100644 --- a/.github/workflows/test-nvidia-mlperf-inference-implementations.yml +++ b/.github/workflows/test-nvidia-mlperf-inference-implementations.yml @@ -17,8 +17,8 @@ jobs: strategy: fail-fast: false matrix: - # system: [ "GO-spr", "phoenix-Amd-Am5", "GO-i9", "mlc-server" ] - system: [ "mlc-server" ] + system: [ "GO-spr", "phoenix-Amd-Am5", "GO-i9"] + # system: [ "mlc-server" ] python-version: [ "3.12" ] model: [ "resnet50", "retinanet", "bert-99", "bert-99.9", "gptj-99.9", "3d-unet-99.9", "sdxl" ] exclude: @@ -33,7 +33,7 @@ jobs: if [ "${{ matrix.system }}" = "GO-spr" ]; then hw_name="RTX4090x2" gpu_name=rtx_4090 - docker_string=" --docker" + docker_string=" --docker --docker_recreate=yes" elif [ "${{ matrix.system }}" = "mlc-server" ]; then hw_name="H100x8" gpu_name=h100 diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 9f08749f8..652e070dc 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -8,7 +8,7 @@ Thank you for your interest in contributing to **MLPerf Automations**! We welcom We value all contributions, whether they are code, documentation, bug reports, or feature suggestions. If you contribute **more than 50 lines of code** (including tests and documentation), you will be officially recognized as a project contributor. -**Note:** Trivial contributions, such as minor typo fixes or small formatting changes, will not count toward the 50-line threshold. +**Note:** Trivial contributions, such as minor typo fixes or small formatting changes, and documentation changes will not count toward the 50-line threshold. To contribute: 1. **Fork** the repository. @@ -29,7 +29,7 @@ Once your contribution exceeds 50 lines of code (in total), we will: ## Current Contributors -- **Grigori Fursin** - *Initial Development, CLI workflow support via CMind, Added core automation features* +- **Grigori Fursin** - *Initial Development, CMind development to drive the automations, Added core automation features* - **Arjun Suresh** - *Initial Development, Added core automation features* - **Anandhu Sooraj** - *Added multiple CM scripts for MLPerf Inference* - **Thomaz Zhu** - *Added CPP implementation for MLPerf Inference Onnxruntime* diff --git a/VERSION b/VERSION index 4528c7c55..33ac52006 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.19 +0.6.21 diff --git a/automation/script/module.py b/automation/script/module.py index 262d7d574..2ddc59c67 100644 --- a/automation/script/module.py +++ b/automation/script/module.py @@ -2183,27 +2183,6 @@ def _run(self, i): if print_readme or repro_prefix != '': readme = self._get_readme(cmd, run_state) - # Copy Docker sample - if repro_prefix != '' and repro_dir != '': - docker_template_path = os.path.join( - self.path, 'docker_repro_example') - if os.path.isdir(docker_template_path): - try: - shutil.copytree( - docker_template_path, - repro_dir, - dirs_exist_ok=True) - except Exception as e: - pass - - docker_container = self._get_docker_container(cmd, run_state) - - try: - with open(os.path.join(repro_dir, 'ubuntu-23.04.Dockerfile'), 'a+') as f: - f.write(docker_container) - except BaseException: - pass - if print_readme: with open('README-cm.md', 'w') as f: f.write(readme) @@ -3808,26 +3787,23 @@ def _get_readme(self, cmd_parts, run_state): content = '' content += """ -*This README was automatically generated by the [CM framework](https://github.com/mlcommons/ck).* +*This README was automatically generated.* ## Install CM ```bash -pip install cmind -U +pip install cm4mlops ``` Check [this readme](https://github.com/mlcommons/ck/blob/master/docs/installation.md) with more details about installing CM and dependencies across different platforms (Ubuntu, MacOS, Windows, RHEL, ...). -## Install CM automation repositories - -```bash -cm pull repo mlcommons@cm4mlops --checkout=dev """ current_cm_repo = run_state['script_repo_alias'] - if current_cm_repo not in ['mlcommons@ck', 'mlcommons@cm4mlops']: + if current_cm_repo not in [ + 'mlcommons@mlperf-automations', 'mlcommons@cm4mlops']: content += '\ncm pull repo ' + \ run_state['script_repo_alias'] + '\n' @@ -3867,57 +3843,6 @@ def _get_readme(self, cmd_parts, run_state): return content - ########################################################################## - def _get_docker_container(self, cmd_parts, run_state): - """ - Outputs a Markdown README file listing the CM run commands for the dependencies - """ - - deps = run_state['deps'] - - version_info = run_state.get('version_info', []) - version_info_dict = {} - - for v in version_info: - k = list(v.keys())[0] - version_info_dict[k] = v[k] - - content = '' - - content += """ - -# The following CM commands were automatically generated (prototype) - -cm pull repo mlcommons@cm4mlops --checkout=dev - -""" - current_cm_repo = run_state['script_repo_alias'] - if current_cm_repo not in ['mlcommons@ck', 'mlcommons@cm4mlops']: - content += '\ncm pull repo ' + \ - run_state['script_repo_alias'] + '\n\n' - - deps_ = '' - - for dep_tags in deps: - - xversion = '' - version = version_info_dict.get(dep_tags, {}).get('version', '') - if version != '': - xversion = ' --version={}\n'.format(version) - - content += "# cm run script --tags=" + \ - dep_tags + "{}\n\n".format(xversion) - - cmd = "cm run script " - - for cmd_part in cmd_parts: - x = '"' if ' ' in cmd_part and not cmd_part.startswith('-') else '' - cmd = cmd + " " + x + cmd_part + x - - content += cmd + '\n' - - return content - ########################################################################## def _print_versions(self, run_state): @@ -4771,41 +4696,6 @@ def doc(self, i): return utils.call_internal_module( self, __file__, 'module_misc', 'doc', i) - ############################################################ - def gui(self, i): - """ - Run GUI for CM script. - - Args: - (CM input dict): - - Returns: - (CM return dict): - - * return (int): return code == 0 if no error and >0 if error - * (error) (str): error string if return>0 - - """ - - artifact = i.get('artifact', '') - tags = '' - if artifact != '': - if ' ' in artifact: - tags = artifact.replace(' ', ',') - - if tags == '': - tags = i.get('tags', '') - - if 'tags' in i: - del (i['tags']) - - i['action'] = 'run' - i['artifact'] = 'gui' - i['parsed_artifact'] = [('gui', '605cac42514a4c69')] - i['script'] = tags.replace(',', ' ') - - return self.cmind.access(i) - ############################################################ def dockerfile(self, i): @@ -4873,7 +4763,7 @@ def docker(self, i): (docker_os_version) (str): force docker OS version (default: 22.04) (docker_image_tag_extra) (str): add extra tag (default:-latest) - (docker_cm_repo) (str): force CM automation repository when building Docker (default: cm4mlops) + (docker_cm_repo) (str): force CM automation repository when building Docker (default: mlperf-automations) (docker_cm_repos) (docker_cm_repo_flags) @@ -5644,20 +5534,13 @@ def prepare_and_run_script_with_postprocessing(i, postprocess="postprocess"): script_repo_alias.replace('@', '/') + '/issues' if repo_to_report == '': - repo_to_report = 'https://github.com/mlcommons/cm4mlops/issues' + repo_to_report = 'https://github.com/mlcommons/mlperf-automations/issues' note = ''' ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Note that it is often a portability issue of a third-party tool or a native script -wrapped and unified by this CM script (automation recipe). Please re-run -this script with --repro flag and report this issue with the original -command line, cm-repro directory and full log here: - -{} - -The CM concept is to collaboratively fix such issues inside portable CM scripts -to make existing tools and native scripts more portable, interoperable -and deterministic. Thank you'''.format(repo_to_report) +Please file an issue at {} along with the full CM command being run and the relevant +or full console log. +'''.format(repo_to_report) rr = { 'return': 2, diff --git a/git_commit_hash.txt b/git_commit_hash.txt index 0ed8ff909..2bae5c9b3 100644 --- a/git_commit_hash.txt +++ b/git_commit_hash.txt @@ -1 +1 @@ -81816f94c4a396a012412cb3a1cf4096b4ad103e +e686cec959f5cf999f8778dc1c3b8a9af04eb823 diff --git a/script/activate-python-venv/COPYRIGHT.md b/script/activate-python-venv/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/activate-python-venv/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/add-custom-nvidia-system/COPYRIGHT.md b/script/add-custom-nvidia-system/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/add-custom-nvidia-system/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-image-classification-onnx-py/COPYRIGHT.md b/script/app-image-classification-onnx-py/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/app-image-classification-onnx-py/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-image-classification-tf-onnx-cpp/COPYRIGHT.md b/script/app-image-classification-tf-onnx-cpp/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/app-image-classification-tf-onnx-cpp/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-image-classification-torch-py/COPYRIGHT.md b/script/app-image-classification-torch-py/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/app-image-classification-torch-py/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-image-classification-tvm-onnx-py/COPYRIGHT.md b/script/app-image-classification-tvm-onnx-py/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/app-image-classification-tvm-onnx-py/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-image-corner-detection/COPYRIGHT.md b/script/app-image-corner-detection/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/app-image-corner-detection/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-loadgen-generic-python/COPYRIGHT.md b/script/app-loadgen-generic-python/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/app-loadgen-generic-python/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-mlperf-automotive-mlcommons-python/COPYRIGHT.md b/script/app-mlperf-automotive-mlcommons-python/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/app-mlperf-automotive-mlcommons-python/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-mlperf-automotive/COPYRIGHT.md b/script/app-mlperf-automotive/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/app-mlperf-automotive/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-mlperf-inference-amd/COPYRIGHT.md b/script/app-mlperf-inference-amd/COPYRIGHT.md new file mode 100644 index 000000000..e69de29bb diff --git a/script/app-mlperf-inference-ctuning-cpp-tflite/COPYRIGHT.md b/script/app-mlperf-inference-ctuning-cpp-tflite/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/app-mlperf-inference-ctuning-cpp-tflite/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-mlperf-inference-dummy/COPYRIGHT.md b/script/app-mlperf-inference-dummy/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/app-mlperf-inference-dummy/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-mlperf-inference-intel/COPYRIGHT.md b/script/app-mlperf-inference-intel/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/app-mlperf-inference-intel/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-mlperf-inference-mlcommons-cpp/COPYRIGHT.md b/script/app-mlperf-inference-mlcommons-cpp/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/app-mlperf-inference-mlcommons-cpp/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-mlperf-inference-mlcommons-python/COPYRIGHT.md b/script/app-mlperf-inference-mlcommons-python/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/app-mlperf-inference-mlcommons-python/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-mlperf-inference-nvidia/COPYRIGHT.md b/script/app-mlperf-inference-nvidia/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/app-mlperf-inference-nvidia/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-mlperf-inference-qualcomm/COPYRIGHT.md b/script/app-mlperf-inference-qualcomm/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/app-mlperf-inference-qualcomm/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-mlperf-inference-redhat/COPYRIGHT.md b/script/app-mlperf-inference-redhat/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/app-mlperf-inference-redhat/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-mlperf-inference/COPYRIGHT.md b/script/app-mlperf-inference/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/app-mlperf-inference/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-mlperf-training-nvidia/COPYRIGHT.md b/script/app-mlperf-training-nvidia/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/app-mlperf-training-nvidia/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-mlperf-training-reference/COPYRIGHT.md b/script/app-mlperf-training-reference/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/app-mlperf-training-reference/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/app-stable-diffusion-onnx-py/COPYRIGHT.md b/script/app-stable-diffusion-onnx-py/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/app-stable-diffusion-onnx-py/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/authenticate-github-cli/COPYRIGHT.md b/script/authenticate-github-cli/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/authenticate-github-cli/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/benchmark-any-mlperf-inference-implementation/COPYRIGHT.md b/script/benchmark-any-mlperf-inference-implementation/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/benchmark-any-mlperf-inference-implementation/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/benchmark-program-mlperf/COPYRIGHT.md b/script/benchmark-program-mlperf/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/benchmark-program-mlperf/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/benchmark-program/COPYRIGHT.md b/script/benchmark-program/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/benchmark-program/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/build-docker-image/COPYRIGHT.md b/script/build-docker-image/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/build-docker-image/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/build-dockerfile/COPYRIGHT.md b/script/build-dockerfile/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/build-dockerfile/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/build-mlperf-inference-server-nvidia/COPYRIGHT.md b/script/build-mlperf-inference-server-nvidia/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/build-mlperf-inference-server-nvidia/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/calibrate-model-for.qaic/COPYRIGHT.md b/script/calibrate-model-for.qaic/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/calibrate-model-for.qaic/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/clean-nvidia-mlperf-inference-scratch-space/COPYRIGHT.md b/script/clean-nvidia-mlperf-inference-scratch-space/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/clean-nvidia-mlperf-inference-scratch-space/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/compile-model-for.qaic/COPYRIGHT.md b/script/compile-model-for.qaic/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/compile-model-for.qaic/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/compile-program/COPYRIGHT.md b/script/compile-program/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/compile-program/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/convert-csv-to-md/COPYRIGHT.md b/script/convert-csv-to-md/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/convert-csv-to-md/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/convert-ml-model-huggingface-to-onnx/COPYRIGHT.md b/script/convert-ml-model-huggingface-to-onnx/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/convert-ml-model-huggingface-to-onnx/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/copy-to-clipboard/COPYRIGHT.md b/script/copy-to-clipboard/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/copy-to-clipboard/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/create-conda-env/COPYRIGHT.md b/script/create-conda-env/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/create-conda-env/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/create-custom-cache-entry/COPYRIGHT.md b/script/create-custom-cache-entry/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/create-custom-cache-entry/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/create-fpgaconvnet-app-tinyml/COPYRIGHT.md b/script/create-fpgaconvnet-app-tinyml/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/create-fpgaconvnet-app-tinyml/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/create-fpgaconvnet-config-tinyml/COPYRIGHT.md b/script/create-fpgaconvnet-config-tinyml/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/create-fpgaconvnet-config-tinyml/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/create-patch/COPYRIGHT.md b/script/create-patch/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/create-patch/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/destroy-terraform/COPYRIGHT.md b/script/destroy-terraform/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/destroy-terraform/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/detect-cpu/COPYRIGHT.md b/script/detect-cpu/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/detect-cpu/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/detect-os/COPYRIGHT.md b/script/detect-os/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/detect-os/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/detect-sudo/COPYRIGHT.md b/script/detect-sudo/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/detect-sudo/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/download-and-extract/COPYRIGHT.md b/script/download-and-extract/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/download-and-extract/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/download-file/COPYRIGHT.md b/script/download-file/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/download-file/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/download-torrent/COPYRIGHT.md b/script/download-torrent/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/download-torrent/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/draw-graph-from-json-data/COPYRIGHT.md b/script/draw-graph-from-json-data/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/draw-graph-from-json-data/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/dump-pip-freeze/COPYRIGHT.md b/script/dump-pip-freeze/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/dump-pip-freeze/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/extract-file/COPYRIGHT.md b/script/extract-file/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/extract-file/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/fail/COPYRIGHT.md b/script/fail/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/fail/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/flash-tinyml-binary/COPYRIGHT.md b/script/flash-tinyml-binary/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/flash-tinyml-binary/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/generate-mlperf-inference-submission/COPYRIGHT.md b/script/generate-mlperf-inference-submission/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/generate-mlperf-inference-submission/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/generate-mlperf-inference-user-conf/COPYRIGHT.md b/script/generate-mlperf-inference-user-conf/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/generate-mlperf-inference-user-conf/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/generate-mlperf-tiny-report/COPYRIGHT.md b/script/generate-mlperf-tiny-report/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/generate-mlperf-tiny-report/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/generate-mlperf-tiny-submission/COPYRIGHT.md b/script/generate-mlperf-tiny-submission/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/generate-mlperf-tiny-submission/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/generate-nvidia-engine/COPYRIGHT.md b/script/generate-nvidia-engine/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/generate-nvidia-engine/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-android-sdk/COPYRIGHT.md b/script/get-android-sdk/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-android-sdk/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-aocl/COPYRIGHT.md b/script/get-aocl/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-aocl/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-aria2/COPYRIGHT.md b/script/get-aria2/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-aria2/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-aws-cli/COPYRIGHT.md b/script/get-aws-cli/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-aws-cli/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-bazel/COPYRIGHT.md b/script/get-bazel/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-bazel/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-blis/COPYRIGHT.md b/script/get-blis/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-blis/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-brew/COPYRIGHT.md b/script/get-brew/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-brew/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-cache-dir/COPYRIGHT.md b/script/get-cache-dir/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-cache-dir/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ck/COPYRIGHT.md b/script/get-ck/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-ck/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-cl/COPYRIGHT.md b/script/get-cl/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-cl/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-cmake/COPYRIGHT.md b/script/get-cmake/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-cmake/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-cmsis_5/COPYRIGHT.md b/script/get-cmsis_5/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-cmsis_5/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-compiler-flags/COPYRIGHT.md b/script/get-compiler-flags/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-compiler-flags/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-compiler-rust/COPYRIGHT.md b/script/get-compiler-rust/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-compiler-rust/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-conda/COPYRIGHT.md b/script/get-conda/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-conda/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-croissant/COPYRIGHT.md b/script/get-croissant/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-croissant/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-cuda-devices/COPYRIGHT.md b/script/get-cuda-devices/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-cuda-devices/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-cuda/COPYRIGHT.md b/script/get-cuda/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-cuda/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-cudnn/COPYRIGHT.md b/script/get-cudnn/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-cudnn/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-cifar10/COPYRIGHT.md b/script/get-dataset-cifar10/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-dataset-cifar10/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-cnndm/COPYRIGHT.md b/script/get-dataset-cnndm/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-dataset-cnndm/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-coco/COPYRIGHT.md b/script/get-dataset-coco/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-dataset-coco/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-coco2014/COPYRIGHT.md b/script/get-dataset-coco2014/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-dataset-coco2014/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-cognata-mlcommons/COPYRIGHT.md b/script/get-dataset-cognata-mlcommons/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-dataset-cognata-mlcommons/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-criteo/COPYRIGHT.md b/script/get-dataset-criteo/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-dataset-criteo/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-igbh/COPYRIGHT.md b/script/get-dataset-igbh/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-dataset-igbh/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-imagenet-aux/COPYRIGHT.md b/script/get-dataset-imagenet-aux/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-dataset-imagenet-aux/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-imagenet-calibration/COPYRIGHT.md b/script/get-dataset-imagenet-calibration/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-dataset-imagenet-calibration/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-imagenet-helper/COPYRIGHT.md b/script/get-dataset-imagenet-helper/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-dataset-imagenet-helper/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-imagenet-train/COPYRIGHT.md b/script/get-dataset-imagenet-train/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-dataset-imagenet-train/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-imagenet-val/COPYRIGHT.md b/script/get-dataset-imagenet-val/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-dataset-imagenet-val/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-kits19/COPYRIGHT.md b/script/get-dataset-kits19/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-dataset-kits19/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-librispeech/COPYRIGHT.md b/script/get-dataset-librispeech/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-dataset-librispeech/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-mlperf-inference-llama3/COPYRIGHT.md b/script/get-dataset-mlperf-inference-llama3/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-dataset-mlperf-inference-llama3/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-mlperf-inference-mixtral/COPYRIGHT.md b/script/get-dataset-mlperf-inference-mixtral/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-dataset-mlperf-inference-mixtral/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-openimages-annotations/COPYRIGHT.md b/script/get-dataset-openimages-annotations/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-dataset-openimages-annotations/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-openimages-calibration/COPYRIGHT.md b/script/get-dataset-openimages-calibration/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-dataset-openimages-calibration/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-openimages/COPYRIGHT.md b/script/get-dataset-openimages/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-dataset-openimages/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-openorca/COPYRIGHT.md b/script/get-dataset-openorca/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-dataset-openorca/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-squad-vocab/COPYRIGHT.md b/script/get-dataset-squad-vocab/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-dataset-squad-vocab/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dataset-squad/COPYRIGHT.md b/script/get-dataset-squad/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-dataset-squad/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dlrm-data-mlperf-inference/COPYRIGHT.md b/script/get-dlrm-data-mlperf-inference/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-dlrm-data-mlperf-inference/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-dlrm/COPYRIGHT.md b/script/get-dlrm/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-dlrm/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-docker/COPYRIGHT.md b/script/get-docker/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-docker/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-gcc/COPYRIGHT.md b/script/get-gcc/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-gcc/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-generic-python-lib/COPYRIGHT.md b/script/get-generic-python-lib/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-generic-python-lib/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-generic-sys-util/COPYRIGHT.md b/script/get-generic-sys-util/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-generic-sys-util/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-gh-actions-runner/COPYRIGHT.md b/script/get-gh-actions-runner/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-gh-actions-runner/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-git-repo/COPYRIGHT.md b/script/get-git-repo/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-git-repo/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-github-cli/COPYRIGHT.md b/script/get-github-cli/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-github-cli/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-go/COPYRIGHT.md b/script/get-go/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-go/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-google-saxml/COPYRIGHT.md b/script/get-google-saxml/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-google-saxml/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-google-test/COPYRIGHT.md b/script/get-google-test/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-google-test/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-huggingface-cli/COPYRIGHT.md b/script/get-huggingface-cli/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-huggingface-cli/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ipol-src/COPYRIGHT.md b/script/get-ipol-src/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-ipol-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-java/COPYRIGHT.md b/script/get-java/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-java/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-javac/COPYRIGHT.md b/script/get-javac/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-javac/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-lib-armnn/COPYRIGHT.md b/script/get-lib-armnn/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-lib-armnn/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-lib-dnnl/COPYRIGHT.md b/script/get-lib-dnnl/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-lib-dnnl/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-lib-protobuf/COPYRIGHT.md b/script/get-lib-protobuf/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-lib-protobuf/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-lib-qaic-api/COPYRIGHT.md b/script/get-lib-qaic-api/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-lib-qaic-api/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-llvm/COPYRIGHT.md b/script/get-llvm/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-llvm/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-microtvm/COPYRIGHT.md b/script/get-microtvm/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-microtvm/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-3d-unet-kits19/COPYRIGHT.md b/script/get-ml-model-3d-unet-kits19/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-ml-model-3d-unet-kits19/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-abtf-ssd-pytorch/COPYRIGHT.md b/script/get-ml-model-abtf-ssd-pytorch/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-ml-model-abtf-ssd-pytorch/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-bert-base-squad/COPYRIGHT.md b/script/get-ml-model-bert-base-squad/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-ml-model-bert-base-squad/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-bert-large-squad/COPYRIGHT.md b/script/get-ml-model-bert-large-squad/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-ml-model-bert-large-squad/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-dlrm-terabyte/COPYRIGHT.md b/script/get-ml-model-dlrm-terabyte/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-ml-model-dlrm-terabyte/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-efficientnet-lite/COPYRIGHT.md b/script/get-ml-model-efficientnet-lite/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-ml-model-efficientnet-lite/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-gptj/COPYRIGHT.md b/script/get-ml-model-gptj/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-ml-model-gptj/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-huggingface-zoo/COPYRIGHT.md b/script/get-ml-model-huggingface-zoo/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-ml-model-huggingface-zoo/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-llama2/COPYRIGHT.md b/script/get-ml-model-llama2/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-ml-model-llama2/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-llama3/COPYRIGHT.md b/script/get-ml-model-llama3/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-ml-model-llama3/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-mixtral/COPYRIGHT.md b/script/get-ml-model-mixtral/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-ml-model-mixtral/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-mobilenet/COPYRIGHT.md b/script/get-ml-model-mobilenet/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-ml-model-mobilenet/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-neuralmagic-zoo/COPYRIGHT.md b/script/get-ml-model-neuralmagic-zoo/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-ml-model-neuralmagic-zoo/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-resnet50/COPYRIGHT.md b/script/get-ml-model-resnet50/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-ml-model-resnet50/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-retinanet-nvidia/COPYRIGHT.md b/script/get-ml-model-retinanet-nvidia/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-ml-model-retinanet-nvidia/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-retinanet/COPYRIGHT.md b/script/get-ml-model-retinanet/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-ml-model-retinanet/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-rgat/COPYRIGHT.md b/script/get-ml-model-rgat/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-ml-model-rgat/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-rnnt/COPYRIGHT.md b/script/get-ml-model-rnnt/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-ml-model-rnnt/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-stable-diffusion/COPYRIGHT.md b/script/get-ml-model-stable-diffusion/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-ml-model-stable-diffusion/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-tiny-resnet/COPYRIGHT.md b/script/get-ml-model-tiny-resnet/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-ml-model-tiny-resnet/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-ml-model-using-imagenet-from-model-zoo/COPYRIGHT.md b/script/get-ml-model-using-imagenet-from-model-zoo/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-ml-model-using-imagenet-from-model-zoo/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-automotive-scratch-space/COPYRIGHT.md b/script/get-mlperf-automotive-scratch-space/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-mlperf-automotive-scratch-space/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-inference-intel-scratch-space/COPYRIGHT.md b/script/get-mlperf-inference-intel-scratch-space/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-mlperf-inference-intel-scratch-space/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-inference-loadgen/COPYRIGHT.md b/script/get-mlperf-inference-loadgen/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-mlperf-inference-loadgen/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-inference-nvidia-common-code/COPYRIGHT.md b/script/get-mlperf-inference-nvidia-common-code/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-mlperf-inference-nvidia-common-code/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-inference-nvidia-scratch-space/COPYRIGHT.md b/script/get-mlperf-inference-nvidia-scratch-space/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-mlperf-inference-nvidia-scratch-space/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-inference-results-dir/COPYRIGHT.md b/script/get-mlperf-inference-results-dir/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-mlperf-inference-results-dir/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-inference-results/COPYRIGHT.md b/script/get-mlperf-inference-results/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-mlperf-inference-results/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-inference-src/COPYRIGHT.md b/script/get-mlperf-inference-src/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-mlperf-inference-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-inference-submission-dir/COPYRIGHT.md b/script/get-mlperf-inference-submission-dir/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-mlperf-inference-submission-dir/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-inference-sut-configs/COPYRIGHT.md b/script/get-mlperf-inference-sut-configs/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-mlperf-inference-sut-configs/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-inference-sut-description/COPYRIGHT.md b/script/get-mlperf-inference-sut-description/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-mlperf-inference-sut-description/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-inference-utils/COPYRIGHT.md b/script/get-mlperf-inference-utils/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-mlperf-inference-utils/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-logging/COPYRIGHT.md b/script/get-mlperf-logging/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-mlperf-logging/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-power-dev/COPYRIGHT.md b/script/get-mlperf-power-dev/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-mlperf-power-dev/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-tiny-eembc-energy-runner-src/COPYRIGHT.md b/script/get-mlperf-tiny-eembc-energy-runner-src/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-mlperf-tiny-eembc-energy-runner-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-tiny-src/COPYRIGHT.md b/script/get-mlperf-tiny-src/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-mlperf-tiny-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-training-nvidia-code/COPYRIGHT.md b/script/get-mlperf-training-nvidia-code/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-mlperf-training-nvidia-code/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-mlperf-training-src/COPYRIGHT.md b/script/get-mlperf-training-src/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-mlperf-training-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-nvidia-docker/COPYRIGHT.md b/script/get-nvidia-docker/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-nvidia-docker/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-nvidia-mitten/COPYRIGHT.md b/script/get-nvidia-mitten/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-nvidia-mitten/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-onnxruntime-prebuilt/COPYRIGHT.md b/script/get-onnxruntime-prebuilt/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-onnxruntime-prebuilt/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-openssl/COPYRIGHT.md b/script/get-openssl/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-openssl/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-platform-details/COPYRIGHT.md b/script/get-platform-details/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-platform-details/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-preprocessed-dataset-criteo/COPYRIGHT.md b/script/get-preprocessed-dataset-criteo/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-preprocessed-dataset-criteo/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-preprocessed-dataset-generic/COPYRIGHT.md b/script/get-preprocessed-dataset-generic/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-preprocessed-dataset-generic/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-preprocessed-dataset-imagenet/COPYRIGHT.md b/script/get-preprocessed-dataset-imagenet/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-preprocessed-dataset-imagenet/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-preprocessed-dataset-kits19/COPYRIGHT.md b/script/get-preprocessed-dataset-kits19/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-preprocessed-dataset-kits19/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-preprocessed-dataset-librispeech/COPYRIGHT.md b/script/get-preprocessed-dataset-librispeech/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-preprocessed-dataset-librispeech/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-preprocessed-dataset-openimages/COPYRIGHT.md b/script/get-preprocessed-dataset-openimages/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-preprocessed-dataset-openimages/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-preprocessed-dataset-openorca/COPYRIGHT.md b/script/get-preprocessed-dataset-openorca/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-preprocessed-dataset-openorca/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-preprocessed-dataset-squad/COPYRIGHT.md b/script/get-preprocessed-dataset-squad/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-preprocessed-dataset-squad/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-python3/COPYRIGHT.md b/script/get-python3/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-python3/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-qaic-apps-sdk/COPYRIGHT.md b/script/get-qaic-apps-sdk/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-qaic-apps-sdk/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-qaic-platform-sdk/COPYRIGHT.md b/script/get-qaic-platform-sdk/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-qaic-platform-sdk/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-qaic-software-kit/COPYRIGHT.md b/script/get-qaic-software-kit/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-qaic-software-kit/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-rclone-config/COPYRIGHT.md b/script/get-rclone-config/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-rclone-config/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-rclone/COPYRIGHT.md b/script/get-rclone/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-rclone/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-rocm-devices/COPYRIGHT.md b/script/get-rocm-devices/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/get-rocm-devices/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-rocm/COPYRIGHT.md b/script/get-rocm/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-rocm/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-spec-ptd/COPYRIGHT.md b/script/get-spec-ptd/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-spec-ptd/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-sys-utils-cm/COPYRIGHT.md b/script/get-sys-utils-cm/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-sys-utils-cm/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-sys-utils-min/COPYRIGHT.md b/script/get-sys-utils-min/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-sys-utils-min/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-tensorrt/COPYRIGHT.md b/script/get-tensorrt/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-tensorrt/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-terraform/COPYRIGHT.md b/script/get-terraform/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-terraform/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-tvm-model/COPYRIGHT.md b/script/get-tvm-model/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-tvm-model/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-tvm/COPYRIGHT.md b/script/get-tvm/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-tvm/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-xilinx-sdk/COPYRIGHT.md b/script/get-xilinx-sdk/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-xilinx-sdk/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-zendnn/COPYRIGHT.md b/script/get-zendnn/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/get-zendnn/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-zephyr-sdk/COPYRIGHT.md b/script/get-zephyr-sdk/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-zephyr-sdk/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/get-zephyr/COPYRIGHT.md b/script/get-zephyr/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/get-zephyr/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-apt-package/COPYRIGHT.md b/script/install-apt-package/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-apt-package/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-aws-cli/COPYRIGHT.md b/script/install-aws-cli/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/install-aws-cli/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-bazel/COPYRIGHT.md b/script/install-bazel/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/install-bazel/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-cmake-prebuilt/COPYRIGHT.md b/script/install-cmake-prebuilt/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/install-cmake-prebuilt/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-cuda-package-manager/COPYRIGHT.md b/script/install-cuda-package-manager/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/install-cuda-package-manager/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-cuda-prebuilt/COPYRIGHT.md b/script/install-cuda-prebuilt/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/install-cuda-prebuilt/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-diffusers-from-src/COPYRIGHT.md b/script/install-diffusers-from-src/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-diffusers-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-gcc-src/COPYRIGHT.md b/script/install-gcc-src/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/install-gcc-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-generic-conda-package/COPYRIGHT.md b/script/install-generic-conda-package/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-generic-conda-package/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-gflags-from-src/COPYRIGHT.md b/script/install-gflags-from-src/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-gflags-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-gflags/COPYRIGHT.md b/script/install-gflags/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/install-gflags/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-github-cli/COPYRIGHT.md b/script/install-github-cli/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/install-github-cli/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-intel-neural-speed-from-src/COPYRIGHT.md b/script/install-intel-neural-speed-from-src/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-intel-neural-speed-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-ipex-from-src/COPYRIGHT.md b/script/install-ipex-from-src/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-ipex-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-llvm-prebuilt/COPYRIGHT.md b/script/install-llvm-prebuilt/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/install-llvm-prebuilt/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-llvm-src/COPYRIGHT.md b/script/install-llvm-src/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/install-llvm-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-mlperf-logging-from-src/COPYRIGHT.md b/script/install-mlperf-logging-from-src/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-mlperf-logging-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-nccl-libs/COPYRIGHT.md b/script/install-nccl-libs/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-nccl-libs/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-numactl-from-src/COPYRIGHT.md b/script/install-numactl-from-src/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-numactl-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-onednn-from-src/COPYRIGHT.md b/script/install-onednn-from-src/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-onednn-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-onnxruntime-from-src/COPYRIGHT.md b/script/install-onnxruntime-from-src/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-onnxruntime-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-opencv-from-src/COPYRIGHT.md b/script/install-opencv-from-src/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-opencv-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-openssl/COPYRIGHT.md b/script/install-openssl/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/install-openssl/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-pip-package-for-cmind-python/COPYRIGHT.md b/script/install-pip-package-for-cmind-python/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-pip-package-for-cmind-python/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-python-src/COPYRIGHT.md b/script/install-python-src/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/install-python-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-python-venv/COPYRIGHT.md b/script/install-python-venv/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/install-python-venv/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-pytorch-from-src/COPYRIGHT.md b/script/install-pytorch-from-src/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-pytorch-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-pytorch-kineto-from-src/COPYRIGHT.md b/script/install-pytorch-kineto-from-src/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-pytorch-kineto-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-qaic-compute-sdk-from-src/COPYRIGHT.md b/script/install-qaic-compute-sdk-from-src/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-qaic-compute-sdk-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-rapidjson-from-src/COPYRIGHT.md b/script/install-rapidjson-from-src/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-rapidjson-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-rocm/COPYRIGHT.md b/script/install-rocm/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/install-rocm/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-tensorflow-for-c/COPYRIGHT.md b/script/install-tensorflow-for-c/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/install-tensorflow-for-c/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-tensorflow-from-src/COPYRIGHT.md b/script/install-tensorflow-from-src/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/install-tensorflow-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-terraform-from-src/COPYRIGHT.md b/script/install-terraform-from-src/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/install-terraform-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-tflite-from-src/COPYRIGHT.md b/script/install-tflite-from-src/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/install-tflite-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-torchvision-from-src/COPYRIGHT.md b/script/install-torchvision-from-src/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-torchvision-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-tpp-pytorch-extension/COPYRIGHT.md b/script/install-tpp-pytorch-extension/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-tpp-pytorch-extension/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/install-transformers-from-src/COPYRIGHT.md b/script/install-transformers-from-src/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/install-transformers-from-src/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/plug-prebuilt-cudnn-to-cuda/COPYRIGHT.md b/script/plug-prebuilt-cudnn-to-cuda/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/plug-prebuilt-cudnn-to-cuda/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/plug-prebuilt-cusparselt-to-cuda/COPYRIGHT.md b/script/plug-prebuilt-cusparselt-to-cuda/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/plug-prebuilt-cusparselt-to-cuda/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/prepare-training-data-bert/COPYRIGHT.md b/script/prepare-training-data-bert/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/prepare-training-data-bert/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/prepare-training-data-resnet/COPYRIGHT.md b/script/prepare-training-data-resnet/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/prepare-training-data-resnet/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/preprocess-mlperf-inference-submission/COPYRIGHT.md b/script/preprocess-mlperf-inference-submission/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/preprocess-mlperf-inference-submission/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/print-any-text/COPYRIGHT.md b/script/print-any-text/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/print-any-text/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/print-croissant-desc/COPYRIGHT.md b/script/print-croissant-desc/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/print-croissant-desc/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/print-hello-world-java/COPYRIGHT.md b/script/print-hello-world-java/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/print-hello-world-java/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/print-hello-world-javac/COPYRIGHT.md b/script/print-hello-world-javac/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/print-hello-world-javac/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/print-hello-world-py/COPYRIGHT.md b/script/print-hello-world-py/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/print-hello-world-py/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/print-hello-world/COPYRIGHT.md b/script/print-hello-world/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/print-hello-world/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/print-python-version/COPYRIGHT.md b/script/print-python-version/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/print-python-version/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/process-mlperf-accuracy/COPYRIGHT.md b/script/process-mlperf-accuracy/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/process-mlperf-accuracy/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/prune-bert-models/COPYRIGHT.md b/script/prune-bert-models/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/prune-bert-models/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/prune-docker/COPYRIGHT.md b/script/prune-docker/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/prune-docker/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/publish-results-to-dashboard/COPYRIGHT.md b/script/publish-results-to-dashboard/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/publish-results-to-dashboard/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/pull-git-repo/COPYRIGHT.md b/script/pull-git-repo/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/pull-git-repo/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/push-csv-to-spreadsheet/COPYRIGHT.md b/script/push-csv-to-spreadsheet/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/push-csv-to-spreadsheet/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/push-mlperf-inference-results-to-github/COPYRIGHT.md b/script/push-mlperf-inference-results-to-github/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/push-mlperf-inference-results-to-github/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/push-mlperf-inference-results-to-github/customize.py b/script/push-mlperf-inference-results-to-github/customize.py index 3fab7359d..de4566966 100644 --- a/script/push-mlperf-inference-results-to-github/customize.py +++ b/script/push-mlperf-inference-results-to-github/customize.py @@ -36,7 +36,7 @@ def preprocess(i): p = parse(repo) if env.get('CM_GITHUB_PAT', '') != '': token = env['CM_GITHUB_PAT'] - env['CM_SET_REMOTE_URL_CMD'] = f"""git remote set-url origin https://git:{token}@{p.host}/{p.owner}/{p.repo}""" + env['CM_GIT_PUSH_CMD'] = f"""git push https://x-access-token:{env['CM_GITHUB_PAT']}@{p.host}/{p.owner}/{p.repo}""" return {'return': 0} diff --git a/script/push-mlperf-inference-results-to-github/run.bat b/script/push-mlperf-inference-results-to-github/run.bat index 0784e055e..085727d19 100644 --- a/script/push-mlperf-inference-results-to-github/run.bat +++ b/script/push-mlperf-inference-results-to-github/run.bat @@ -28,7 +28,8 @@ git commit -a -m "%CM_MLPERF_RESULTS_REPO_COMMIT_MESSAGE%" if defined CM_MLPERF_INFERENCE_SUBMISSION_DIR call %CM_SET_REMOTE_URL_CMD% -git push +echo "%CM_GIT_PUSH_CMD%" +%CM_GIT_PUSH_CMD% REM Check if the previous command was successful if %errorlevel% neq 0 exit /b %errorlevel% diff --git a/script/push-mlperf-inference-results-to-github/run.sh b/script/push-mlperf-inference-results-to-github/run.sh index 7fb95eb3d..8b6ac5648 100644 --- a/script/push-mlperf-inference-results-to-github/run.sh +++ b/script/push-mlperf-inference-results-to-github/run.sh @@ -17,9 +17,7 @@ test $? -eq 0 || exit $? git commit -a -m "${CM_MLPERF_RESULTS_REPO_COMMIT_MESSAGE}" -if [[ -n ${CM_SET_REMOTE_URL_CMD} ]]; then - ${CM_SET_REMOTE_URL_CMD} -fi +echo ${CM_GIT_PUSH_CMD} +${CM_GIT_PUSH_CMD} -git push test $? -eq 0 || exit $? diff --git a/script/remote-run-commands/COPYRIGHT.md b/script/remote-run-commands/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/remote-run-commands/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/reproduce-mlperf-inference-dummy/COPYRIGHT.md b/script/reproduce-mlperf-inference-dummy/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/reproduce-mlperf-inference-dummy/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/reproduce-mlperf-octoml-tinyml-results/COPYRIGHT.md b/script/reproduce-mlperf-octoml-tinyml-results/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/reproduce-mlperf-octoml-tinyml-results/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/reproduce-mlperf-training-nvidia/COPYRIGHT.md b/script/reproduce-mlperf-training-nvidia/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/reproduce-mlperf-training-nvidia/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/run-all-mlperf-models/COPYRIGHT.md b/script/run-all-mlperf-models/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/run-all-mlperf-models/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/run-docker-container/COPYRIGHT.md b/script/run-docker-container/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/run-docker-container/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/run-mlperf-automotive-app/COPYRIGHT.md b/script/run-mlperf-automotive-app/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/run-mlperf-automotive-app/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/run-mlperf-inference-app/COPYRIGHT.md b/script/run-mlperf-inference-app/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/run-mlperf-inference-app/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/run-mlperf-inference-mobilenet-models/COPYRIGHT.md b/script/run-mlperf-inference-mobilenet-models/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/run-mlperf-inference-mobilenet-models/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/run-mlperf-inference-submission-checker/COPYRIGHT.md b/script/run-mlperf-inference-submission-checker/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/run-mlperf-inference-submission-checker/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/run-mlperf-inference-submission-checker/_cm.yaml b/script/run-mlperf-inference-submission-checker/_cm.yaml index a302e5d12..0bb2079b0 100644 --- a/script/run-mlperf-inference-submission-checker/_cm.yaml +++ b/script/run-mlperf-inference-submission-checker/_cm.yaml @@ -111,3 +111,7 @@ versions: adr: submission-checker-src: version: r4.1 + r5.0: + adr: + submission-checker-src: + version: master diff --git a/script/run-mlperf-power-client/COPYRIGHT.md b/script/run-mlperf-power-client/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/run-mlperf-power-client/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/run-mlperf-power-server/COPYRIGHT.md b/script/run-mlperf-power-server/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/run-mlperf-power-server/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/run-mlperf-training-submission-checker/COPYRIGHT.md b/script/run-mlperf-training-submission-checker/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/run-mlperf-training-submission-checker/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/run-python/COPYRIGHT.md b/script/run-python/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/run-python/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/run-terraform/COPYRIGHT.md b/script/run-terraform/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/run-terraform/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/run-vllm-server/COPYRIGHT.md b/script/run-vllm-server/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/run-vllm-server/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/runtime-system-infos/COPYRIGHT.md b/script/runtime-system-infos/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/runtime-system-infos/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/save-mlperf-inference-implementation-state/COPYRIGHT.md b/script/save-mlperf-inference-implementation-state/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/save-mlperf-inference-implementation-state/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/set-device-settings-qaic/COPYRIGHT.md b/script/set-device-settings-qaic/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/set-device-settings-qaic/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/set-echo-off-win/COPYRIGHT.md b/script/set-echo-off-win/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/set-echo-off-win/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/set-performance-mode/COPYRIGHT.md b/script/set-performance-mode/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/set-performance-mode/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/set-sqlite-dir/COPYRIGHT.md b/script/set-sqlite-dir/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/set-sqlite-dir/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/set-user-limits/COPYRIGHT.md b/script/set-user-limits/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/set-user-limits/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/set-venv/COPYRIGHT.md b/script/set-venv/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/set-venv/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/submit-mlperf-results/COPYRIGHT.md b/script/submit-mlperf-results/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/submit-mlperf-results/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/tar-my-folder/COPYRIGHT.md b/script/tar-my-folder/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/tar-my-folder/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/test-cm-core/COPYRIGHT.md b/script/test-cm-core/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/test-cm-core/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/test-cm-script-pipeline/COPYRIGHT.md b/script/test-cm-script-pipeline/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/test-cm-script-pipeline/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/test-cm-scripts/COPYRIGHT.md b/script/test-cm-scripts/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/test-cm-scripts/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/test-debug/COPYRIGHT.md b/script/test-debug/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/test-debug/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/test-download-and-extract-artifacts/COPYRIGHT.md b/script/test-download-and-extract-artifacts/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/test-download-and-extract-artifacts/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/test-dummy/COPYRIGHT.md b/script/test-dummy/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/test-dummy/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/test-mlperf-inference-retinanet/COPYRIGHT.md b/script/test-mlperf-inference-retinanet/COPYRIGHT.md new file mode 100644 index 000000000..a059b0c49 --- /dev/null +++ b/script/test-mlperf-inference-retinanet/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2024-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/test-set-sys-user-cm/COPYRIGHT.md b/script/test-set-sys-user-cm/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/test-set-sys-user-cm/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/truncate-mlperf-inference-accuracy-log/COPYRIGHT.md b/script/truncate-mlperf-inference-accuracy-log/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/truncate-mlperf-inference-accuracy-log/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/upgrade-python-pip/COPYRIGHT.md b/script/upgrade-python-pip/COPYRIGHT.md new file mode 100644 index 000000000..2d6a2775e --- /dev/null +++ b/script/upgrade-python-pip/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2023-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/script/wrapper-reproduce-octoml-tinyml-submission/COPYRIGHT.md b/script/wrapper-reproduce-octoml-tinyml-submission/COPYRIGHT.md new file mode 100644 index 000000000..9e44ad290 --- /dev/null +++ b/script/wrapper-reproduce-octoml-tinyml-submission/COPYRIGHT.md @@ -0,0 +1,9 @@ +# Copyright Notice + +© 2022-2025 MLCommons. All Rights Reserved. + +This file is licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License can be obtained at: + +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Unless required by applicable law or agreed to in writing, software distributed under the License is provided on an "AS IS" basis, without warranties or conditions of any kind, either express or implied. Please refer to the License for the specific language governing permissions and limitations under the License. diff --git a/setup.py b/setup.py index 0e040665e..c93b650ea 100644 --- a/setup.py +++ b/setup.py @@ -140,16 +140,20 @@ def command_exists(self, command): def custom_function(self): commit_hash = get_commit_hash() import cmind - r = cmind.access({'action': 'rm', - 'automation': 'repo', - 'artifact': 'mlcommons@cm4mlops', - 'force': True, - 'all': True}) + clean_mlops_repo = os.environ.get('CM_MLOPS_CLEAN_REPO', 'false') + if str(clean_mlops_repo).lower() not in ["no", "0", "false", "off"]: + r = cmind.access({'action': 'rm', + 'automation': 'repo', + 'artifact': 'mlcommons@cm4mlops', + 'force': True, + 'all': True}) + branch = os.environ.get('CM_MLOPS_REPO_BRANCH', 'dev') pull_default_mlops_repo = os.environ.get( 'CM_PULL_DEFAULT_MLOPS_REPO', 'true') - if str(pull_default_mlops_repo).lower() not in ["no", "0", "false"]: + if str(pull_default_mlops_repo).lower() not in [ + "no", "0", "false", "off"]: r = cmind.access({'action': 'pull', 'automation': 'repo', 'artifact': 'mlcommons@mlperf-automations',