HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //home/ubuntu/neovim/test/benchmark/deepcopy_spec.lua
local N = 20

local function tcall(f, ...)
  local ts = vim.uv.hrtime()
  for _ = 1, N do
    f(...)
  end
  return ((vim.uv.hrtime() - ts) / 1000000) / N
end

local function build_shared(n)
  local t = {}
  local a = {}
  local b = {}
  local c = {}
  for _ = 1, n do
    t[#t + 1] = {}
    local tl = t[#t]
    for _ = 1, n do
      tl[#tl + 1] = a
      tl[#tl + 1] = b
      tl[#tl + 1] = c
    end
  end
  return t
end

local function build_unique(n)
  local t = {}
  for _ = 1, n do
    t[#t + 1] = {}
    local tl = t[#t]
    for _ = 1, n do
      tl[#tl + 1] = {}
    end
  end
  return t
end

describe('vim.deepcopy()', function()
  local function run(name, n, noref)
    it(string.format('%s entries=%d noref=%s', name, n, noref), function()
      local t = name == 'shared' and build_shared(n) or build_unique(n)
      local d = tcall(vim.deepcopy, t, noref)
      print(string.format('%.2f ms', d))
    end)
  end

  run('unique', 50, false)
  run('unique', 50, true)
  run('unique', 2000, false)
  run('unique', 2000, true)

  run('shared', 50, false)
  run('shared', 50, true)
  run('shared', 2000, false)
  run('shared', 2000, true)
end)