加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
preamble.js.lds 393 Bytes
一键复制 编辑 原始数据 按行查看 历史
XNNPACK Team 提交于 2019-09-27 18:10 . Initial open-source release
/*
* Copyright 2019 Google LLC
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
/* mock crypto module for benchmarks and unit tests or std::random_device fails at runtime */
var crypto = { getRandomValues: function(array) { for (var i = 0; i < array.length; i++) array[i] = (Math.random()*256)|0 } };
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化