lune/tests/ffi
2024-10-24 01:01:49 +00:00
..
benchmark/external_call Typescript lint error fix (#243) 2024-10-22 02:22:48 +00:00
external_closure Add benchmark tests/ffi/benchmark/external_call (#243) 2024-10-22 02:18:15 +00:00
external_math Fix closure error (#243) 2024-10-21 19:32:38 +00:00
external_pointer Fix assertion (#243) 2024-10-22 04:44:48 +00:00
external_print Fix closure error (#243) 2024-10-21 19:32:38 +00:00
external_struct Fix closure error (#243) 2024-10-21 19:32:38 +00:00
types Add tests for ffi (#243) 2024-10-13 05:09:31 +00:00
utility Add windows benchmark result (#243) 2024-10-22 07:01:35 +00:00
cast.luau Fix casting and add casting test (#243) 2024-10-24 01:01:49 +00:00
isInteger.luau Fix casting and add casting test (#243) 2024-10-24 01:01:49 +00:00
pretty_print.luau Remove callable boundary check (#243) 2024-10-23 04:29:43 +00:00
read_boundary.luau Add Data:copyFrom, tests and annotation (#243) 2024-10-24 00:26:43 +00:00
README.md Fix casting and add casting test (#243) 2024-10-24 01:01:49 +00:00
write_boundary.luau Add Data:copyFrom, tests and annotation (#243) 2024-10-24 00:26:43 +00:00

tests/ffi

Requirements

gcc for library compiling (for external-*)

Test Results

External tests

Luau-side

Benchmark Results

Note: LuaJit's os.clock function returns process CPU time (used) which much smaller then Luau's os.clock output. In this benchmark, luau uses 'time.h' instead of os.clock. See utility/proc_clock

benchmark/external_call

Target external c function

int add(int a, int b) {
    return a + b;
}

bench_scale = 1000000

Lune ffi

Command: cargo run run tests/ffi/benchmark/external_call Command: cargo run --profile=release run tests/ffi/benchmark/external_call

  • Device1-Linux-PVE
    Lune release target: 0.205127 (sec)
    Lune dev target: 1.556489 (sec)

    Commit: ddf0c4c

  • Device2-Windows-11 Lune release target: 0.1875 (sec)
    Lune dev target: ? SEGFUALT (sec)

    Commit: ddf0c4c

LuaJit ffi

Command: luajit tests/ffi/benchmark/external_call/luajit.lua

  • Device1-Linux-PVE: 0.001682 (sec)

    LuaJIT 2.1.1727870382
    (flags = JIT ON SSE3 SSE4.1 BMI2 fold cse dce fwd dse narrow loop abc sink fuse)

Deno ffi

Command: deno run --unstable-ffi --allow-ffi ./tests/ffi/benchmark/external_call/deno.ts

  • Device1-Linux-PVE: 0.006384 (sec)

    Deno 1.46.3 (v8 = 12.9.202.5-rusty)

Sysinformation

  • Device1-Linux-PVE

    CPU: AMD Ryzen 5 7600 (12) @ 5.1
    MEM: 61898MiB 5600 MT/s
    KERNEL: 6.8.12-2-pve (Proxmox VE 8.2.7 x86_64)

  • Device2-Windows-11

    CPU: AMD Ryzen 5 7600 (4) @ 3.800GHz
    MEM: 12250MiB 5600 MT/s
    KERNEL: 10.0.22631 (Windows 11 x86_64)
    HOST: QEMU Standard PC (Q35 + ICH9, 2009)