加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.html 631 Bytes
一键复制 编辑 原始数据 按行查看 历史
Erin Truax 提交于 2021-02-23 17:09 . Create index.html
<html>
<head>
<title>Vitis AI</title>
<body onload="urlredirect()">
Vitis AI pages are organized by release version. Redirecting to the latest version.
<script type="text/javascript">
function urlredirect(){
var userLang = navigator.language || navigator.userLanguage;
if (userLang == "ja") {
window.location.href = "https://pages.gitenterprise.xilinx.com/Vitis/vitis-ai-staging//master/docs-jp/README.html"
}
else {
window.location.href = "https://pages.gitenterprise.xilinx.com/Vitis/vitis-ai-staging//master/docs/README.html"
}
}
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化