sampleset benchmark reports errors and accepts SAMPLE_COUNT

This commit is contained in:
Vyacheslav Matyukhin 2022-09-20 01:26:19 +04:00
parent 35671c5c51
commit 6fc21ddda6
No known key found for this signature in database
GPG Key ID: 3D2A774C5489F96C

View File

@ -4,19 +4,31 @@ import { measure } from "./lib.mjs";
const maxP = 3;
const sampleCount = process.env.SAMPLE_COUNT;
for (let p = 0; p <= maxP; p++) {
const size = Math.pow(10, p);
const project = SqProject.create();
if (sampleCount) {
project.setEnvironment({
sampleCount: Number(sampleCount),
xyPointLength: Number(sampleCount),
});
}
project.setSource(
"main",
`
List.upTo(1, ${size}) -> map({|x|
normal(x,2) -> SampleSet.fromDist -> PointSet.fromDist
})->List.last
List.upTo(1, ${size}) -> map(
{ |x| normal(x,2) -> SampleSet.fromDist -> PointSet.fromDist }
)->List.last
`
);
const time = measure(() => {
project.run("main");
});
const result = project.getResult("main");
if (result.tag != "Ok") {
throw new Error("Code failed: " + result.value.toString());
}
console.log(`1e${p}`, "\t", time);
}