따라서 AssemblyScript에서 벤치마킹할 수 있습니다...

소개합니다... Astral --AssemblyScript용 최소한의 벤치마킹 라이브러리입니다. criterion.rs를 기반으로 합니다.
이 새로운 벤치마킹 도구를 사용하면 코드의 성능을 정확하게 시각화하고 최적화할 수 있습니다. 일반적으로 성능을 측정하려면 while 루프와 Date.now 또는 performance.now 바인딩을 사용해야 합니다. Astral은 워밍업 기간, 로깅 및 기타 몇 가지 도구를 추가합니다. 시작하자!
기존 AssemblyScript 프로젝트에서 as-tral을 설치합니다.

npm i -D @as-tral/cli


다음으로 어셈블리 디렉터리에 벤치 폴더를 만듭니다. 거기에 as-tral.d.ts라는 파일을 추가합니다.

assembly/
└── __benches__/
    └── as-tral.d.ts


as-tral.d.ts에서 복사하여 붙여넣기

/// <reference path="../../node_modules/@as-tral/cli/as-tral.d.ts" />


확장자가 .ts인 파일을 벤치에 고정합니다. 여러 개를 가질 수도 있습니다.

assembly/
└── __benches__/
    ├── as-tral.d.ts
    └── my-benchmark.ts


벤치마크는 이 파일에 저장됩니다. 예제 벤치마크를 만들어 봅시다.

// to ensure accurate benchmarks, we must make sure that binaryen doesn't do any sneaky
// optimizations on our input without us knowing. Thus, we must use `blackbox`.
const input = blackbox("The quick brown fox jumped over the lazy dog.".repeat(10));

// our string here must be a compile time constant.
// open an issue if you'd like to see this constraint lifted.
bench("string split", () => {
    // this function body will be run many times.
    // we must make sure our compiler won't throw away the computation,
    // so we use `blackbox` here again.
    blackbox(input.split(" "));
});


이제 as-tral을 실행해 보겠습니다.

rom@i9-cabin:~/demo$ npx astral
Compiling assembly/__benches__/hello.ts

Benchmarking string split: Warming up for 3000ms
Benchmarking string split: Collecting 100 samples in estimated 5018.6ms (1.2M iterations)
Benchmarking string split: Analyzing
string split            time: [3770.9ns 3775ns 3778.9ns]
Found 4 outliers among 100 measurements (4%)
  3 (3%) low mild
  1 (1%) high mild


꽤 좋아!

좋은 웹페이지 즐겨찾기