Skip to content

Commit

Permalink
Refinements
Browse files Browse the repository at this point in the history
  • Loading branch information
regisss committed Jul 21, 2023
1 parent 83e9f6c commit a23ddcd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion docs/combine_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ def rename_subpackage_toc(subpackage: str, toc: Dict):
rename_subpackage_toc(subpackage, [file])

# Just keep the name of the partner
toc[0]["title"] = toc[0]["title"].split("Optimum ")[-1]
if subpackage != "furiosa":
toc[0]["title"] = toc[0]["title"].split("Optimum ")[-1]
else:
toc[0]["title"] = "FuriosaAI"


def rename_copy_subpackage_html_paths(subpackage: str, subpackage_path: Path, optimum_path: Path, version: str):
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ As such, Optimum enables developers to efficiently use any of these platforms wi
<p class="text-gray-700">Accelerate your training and inference workflows with <a href="https://aws.amazon.com/machine-learning/trainium/">AWS Trainium</a> and <a href="https://aws.amazon.com/machine-learning/inferentia/">AWS Inferentia</a></p>
</a>
<a class="!no-underline border dark:border-gray-700 p-5 rounded-lg shadow hover:shadow-lg" href="./furiosa/index"
><div class="w-full text-center bg-gradient-to-br from-green-400 to-green-500 rounded-lg py-1.5 font-semibold mb-5 text-white text-lg leading-relaxed">Furiosa</div>
><div class="w-full text-center bg-gradient-to-br from-green-400 to-green-500 rounded-lg py-1.5 font-semibold mb-5 text-white text-lg leading-relaxed">FuriosaAI</div>
<p class="text-gray-700">Fast and efficient inference on <a href="https://www.furiosa.ai/">FuriosaAI WARBOY</a></p>
</a>
<a class="!no-underline border dark:border-gray-700 p-5 rounded-lg shadow hover:shadow-lg" href="./onnxruntime/overview"
Expand Down

0 comments on commit a23ddcd

Please sign in to comment.