await suite('Block performance', async () => {
const COUNT = 0x20
- await skip(`PowGpu: Time to calculate proof-of-work for a block hash ${COUNT} times`, async () => {
+ await test(`PowGpu: Time to calculate proof-of-work for a block hash ${COUNT} times`, async () => {
const times = []
const hashes = [
NANO_TEST_VECTORS.PRIVATE_0,
]
for (let i = 0; i < 6; i++) {
const start = performance.now()
- const work = await PowGl.find(hashes[i])
+ const work = await PowGl.search(hashes[i])
const end = performance.now()
times.push(end - start)
console.log(`${work} (${end - start} ms) ${hashes[i]}`)
console.log(`Maximum: ${max} ms`)
})
- await skip(`PowGpu: Time to calculate proof-of-work for a send block ${COUNT} times`, async () => {
+ await test(`libnemo: Time to calculate proof-of-work for a send block ${COUNT} times`, async () => {
const times = []
const block = new SendBlock(
NANO_TEST_VECTORS.SEND_BLOCK.account,
console.log(`Maximum: ${max} ms`)
})
- await skip(`nano-webgl-pow: Time to calculate proof-of-work for a send block ${COUNT} times`, async () => {
+ await test(`nano-webgl-pow: Time to calculate proof-of-work for a send block ${COUNT} times`, async () => {
const times = []
for (let i = 0; i < COUNT; i++) {
const start = performance.now()