-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Take over benchmarks #2149
Comments
According to this the cycles is computed like this: The per instruction fee is .4 cycles per instruction (or 10 instructions for 4 cycles) |
In the release process we run the benchmarks, and commit each on their own commit, merge those commits into one commit, and then have that one commit be reviewed and merged it |
Get rid of publish script? Do the same approach for publish Yes #2173 |
Options for always recording benchmarks by default on running tests
const wasmData: WasmData = {
envVars,
recordBenchmarks:
process.env.npm_lifecycle_event === 'pretest'
? process.env.AZLE_RECORD_BENCHMARKS !== 'false'
: process.env.AZLE_RECORD_BENCHMARKS === 'true'
};
{
"pretest": "AZLE_ENV=test tsx test/pretest.ts",
}
{
"test": "AZLE_RECORD_BENCHMARKS=${AZLE_RECORD_BENCHMARKS:-true} jest",
} I'm going with option 1 |
AZLE_RECORD_BENCHMARKS=true npm test
by defaultThe text was updated successfully, but these errors were encountered: