aboutsummaryrefslogtreecommitdiffstats
path: root/docs/usecases/vpp_testbench/src/vpp_testbench_helpers.sh
diff options
context:
space:
mode:
authorAtzm Watanabe <atzmism@gmail.com>2022-08-08 15:45:36 +0900
committerAtzm Watanabe <atzmism@gmail.com>2022-08-08 16:33:39 +0900
commit03aae9637922023dd77955cb15caafb7ce309200 (patch)
treef3f300413201565cd63d3e3d31f53694fbaf2f4c /docs/usecases/vpp_testbench/src/vpp_testbench_helpers.sh
parent389aae573fb4baba278c033cb019201e246942ab (diff)
ikev2: fix rekeying with multiple notify payloads
Type: fix Signed-off-by: Atzm Watanabe <atzmism@gmail.com> Change-Id: I065bd5c26055d863d786023970e7deeed261b31c
Diffstat (limited to 'docs/usecases/vpp_testbench/src/vpp_testbench_helpers.sh')
0 files changed, 0 insertions, 0 deletions
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
--[[
/*
 * Copyright (c) 2016 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
]]

local vpp = require "vpp-lapi"

local ffi = require "ffi"

ffi.cdef([[
   struct timespec {
               long tv_sec;        /* seconds */
               long tv_nsec;       /* nanoseconds */
           };

   int clock_gettime(int clk_id, struct timespec *tp);
]])


local time_cache = ffi.new("struct timespec[1]")
local time_cache_1 = time_cache[0]
function get_ns()
  ffi.C.clock_gettime(0, time_cache)
  return time_cache_1.tv_nsec + 1000000000 * time_cache_1.tv_sec
end

function do_bench()
  local cycle_start = get_ns()
  local n_iterations =  10000
  local count = 1
  for i = 1,n_iterations do
    -- print(i)
    vpp:api_call("show_version")
    count = count + 1
    -- print(i, "done")
  end
  cycle_end = get_ns()
  local tps = n_iterations*1000000000LL/(cycle_end - cycle_start)
  print (tostring(count) .. " iterations, average speed " .. tostring(tps) .. " per second")
  return tps
end

root_dir = "/home/ubuntu/vpp"
pneum_path = root_dir .. "/build-root/install-vpp_debug-native/vpp-api/lib64/libpneum.so"
vpp:init({ pneum_path = pneum_path })
vpp:json_api(root_dir .. "/build-root/install-vpp_debug-native/vpp/vpp-api/vpe.api.json")

vpp:connect("lua-bench")
local n_tests = 10
local tps_acc = 0LL
for i=1,n_tests do
  tps_acc = tps_acc + do_bench()
end
print("Average tps across the tests: " .. tostring(tps_acc/n_tests))

vpp:disconnect()