gpt4 book ai didi

v8 - 如何在 d8 上运行 wasm

转载 作者:行者123 更新时间:2023-12-04 10:02:57 25 4
gpt4 key购买 nike

我有一个包含函数 fib(n) 的 wasm 文件 fib.wasm。
如果在浏览器中运行它,我们可以做到

var module, functions = {};
fetch('fib.wasm')
.then(response => response.arrayBuffer())
.then(buffer => new Uint8Array(buffer))
.then(binary => {
var moduleArgs = {
wasmBinary: binary,
onRuntimeInitialized: function () {
functions.fib =
module.cwrap('fib',
'number',
['number']);
onReady();
}
};
module = Module(moduleArgs);
});

如果在 Node 中,由于没有实现 fetch,我们可以这样做
const fs = require('fs')
const buf = fs.readFileSync('fib.wasm')
(async () => { res = await WebAssembly.instantiate(buf); })()
const { fib } = res.instance.exports

但是,在 d8 shell 中,两种方式都涉及未定义的函数。我们如何在 d8 中运行 wasm?

最佳答案

d8 shell有一个功能read()它从磁盘读取文件。它需要一个可选参数来指定二进制模式。所以以下应该工作:

const buf = read('fib.wasm', 'binary');
let res;
WebAssembly.instantiate(buf).then((x) => res = x, (error) => console.log(error));
const { fib } = res.instance.exports;

关于v8 - 如何在 d8 上运行 wasm,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61747815/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com