• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2# Interoperability benchmarks
3
4## I) Dynamic to dynamic (d2d)
5```sh
6vmb all -p interop_d2d -T d2d --src-langs=js --langs=js ./examples/benchmarks
7
8# these tests could also be run on js platforms
9vmb all -p node_host -T d2d -v debug ./examples/benchmarks
10vmb all -p v_8_host -T d2d -v debug ./examples/benchmarks
11vmb all -p ark_js_vm_host -T d2d --src-langs=js --langs=js ./examples/benchmarks
12```
13
14## II) Static to static (s2s)
15```sh
16vmb all -p arkts_host -A -T s2s ./examples/benchmarks
17```
18## III) Static to dynamic (s2d)
19```sh
20vmb all -p interop_s2d -T s2d ./examples/benchmarks
21```
22
23## IV) Dynamic to Static (d2s)
24```sh
25vmb all -p interop_d2s -T d2s ./examples
26```
27