mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-04 10:30:56 +01:00
Add another benchmark-like example
This commit is contained in:
parent
d21b3723f5
commit
099d49c9e8
2 changed files with 62 additions and 0 deletions
29
examples/lots_of_threads.luau
Normal file
29
examples/lots_of_threads.luau
Normal file
|
@ -0,0 +1,29 @@
|
|||
--!nocheck
|
||||
--!nolint UnknownGlobal
|
||||
|
||||
local NUM_BATCHES = 100
|
||||
local NUM_THREADS = 10_000
|
||||
|
||||
print(`Spawning {NUM_BATCHES * NUM_THREADS} threads split into {NUM_BATCHES} batches\n`)
|
||||
|
||||
local before = os.clock()
|
||||
for i = 1, NUM_BATCHES do
|
||||
print(`Batch {i} of {NUM_BATCHES}`)
|
||||
local thread = coroutine.running()
|
||||
|
||||
local counter = 0
|
||||
for j = 1, NUM_THREADS do
|
||||
__runtime__spawn(function()
|
||||
sleep()
|
||||
counter += 1
|
||||
if counter == NUM_THREADS then
|
||||
__runtime__spawn(thread)
|
||||
end
|
||||
end)
|
||||
end
|
||||
|
||||
coroutine.yield()
|
||||
end
|
||||
local after = os.clock()
|
||||
|
||||
print(`\nSpawned {NUM_BATCHES * NUM_THREADS} sleeping threads in {after - before}s`)
|
33
examples/lots_of_threads.rs
Normal file
33
examples/lots_of_threads.rs
Normal file
|
@ -0,0 +1,33 @@
|
|||
use std::time::Duration;
|
||||
|
||||
use smol_mlua::{
|
||||
mlua::prelude::{Lua, LuaResult},
|
||||
smol::Timer,
|
||||
Runtime,
|
||||
};
|
||||
|
||||
const MAIN_SCRIPT: &str = include_str!("./lots_of_threads.luau");
|
||||
|
||||
const ONE_NANOSECOND: Duration = Duration::from_nanos(1);
|
||||
|
||||
pub fn main() -> LuaResult<()> {
|
||||
// Set up persistent lua environment
|
||||
let lua = Lua::new();
|
||||
lua.globals().set(
|
||||
"sleep",
|
||||
lua.create_async_function(|_, ()| async move {
|
||||
// Obviously we can't sleep for a single nanosecond since
|
||||
// this uses OS scheduling under the hood, but we can try
|
||||
Timer::after(ONE_NANOSECOND).await;
|
||||
Ok(())
|
||||
})?,
|
||||
)?;
|
||||
|
||||
// Load the main script into a runtime and run it until completion
|
||||
let rt = Runtime::new(&lua)?;
|
||||
let main = lua.load(MAIN_SCRIPT);
|
||||
rt.push_thread(&lua, main, ());
|
||||
rt.run_blocking(&lua);
|
||||
|
||||
Ok(())
|
||||
}
|
Loading…
Add table
Reference in a new issue