-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2885 from finos/strptime-wasm
Better `datetime`/`date` string parsing performance
- Loading branch information
Showing
7 changed files
with
177 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/cpp/src/arrow/util/value_parsing.h b/cpp/src/arrow/util/value_parsing.h | ||
index 609906052..1e3dfae7c 100644 | ||
--- a/cpp/src/arrow/util/value_parsing.h | ||
+++ b/cpp/src/arrow/util/value_parsing.h | ||
@@ -804,7 +804,7 @@ static inline bool ParseTimestampStrptime(const char* buf, size_t length, | ||
std::string clean_copy(buf, length); | ||
struct tm result; | ||
memset(&result, 0, sizeof(struct tm)); | ||
-#ifdef _WIN32 | ||
+#if defined(_WIN32) || defined(__EMSCRIPTEN__) | ||
char* ret = arrow_strptime(clean_copy.c_str(), format, &result); | ||
#else | ||
char* ret = strptime(clean_copy.c_str(), format, &result); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
// ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ | ||
// ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃ | ||
// ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃ | ||
// ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃ | ||
// ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃ | ||
// ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫ | ||
// ┃ Copyright (c) 2017, the Perspective Authors. ┃ | ||
// ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃ | ||
// ┃ This file is part of the Perspective library, distributed under the terms ┃ | ||
// ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃ | ||
// ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ | ||
|
||
import * as all_benchmarks from "./cross_platform_suite.mjs"; | ||
import * as perspective_bench from "./src/js/benchmark.mjs"; | ||
import * as puppeteer from "puppeteer"; | ||
|
||
import * as fs from "node:fs"; | ||
import * as path from "node:path"; | ||
import * as url from "node:url"; | ||
import * as process from "node:process"; | ||
|
||
const __dirname = url.fileURLToPath(new URL(".", import.meta.url)).slice(0, -1); | ||
|
||
/** | ||
* We use the `dependencies` of this package for the benchmark candidate | ||
* module list, so that we only need specify the dependencies and benchmark | ||
* candidates in one place. | ||
*/ | ||
const VERSIONS = [ | ||
"@finos/perspective", | ||
"perspective-3-0-0", | ||
"perspective-2-10-0", | ||
]; | ||
|
||
perspective_bench.suite( | ||
[...VERSIONS], | ||
path.join(__dirname, "dist/benchmark-js.arrow"), | ||
async function (path, version_idx) { | ||
let client, metadata; | ||
console.log(path); | ||
const browser = await puppeteer.launch({ | ||
headless: true, | ||
protocolTimeout: 100_000_000, | ||
}); | ||
const page = await browser.newPage(); | ||
|
||
await page.goto("http://localhost:8081/empty.html"); | ||
|
||
async function test_suite(suite) { | ||
const items = await page.evaluate( | ||
async ([version, suite]) => { | ||
const { default: perspective } = await import( | ||
`/tools/perspective-bench/node_modules/${version}/dist/esm/perspective.inline.js` | ||
); | ||
const benchmarks = await import( | ||
"/tools/perspective-bench/cross_platform_suite.mjs" | ||
); | ||
|
||
const metadata = { | ||
version: "3.2.0", | ||
version_idx: 0, | ||
}; | ||
const total = []; | ||
window.__SEND__ = (x) => { | ||
total.push(x); | ||
}; | ||
|
||
await benchmarks[suite]( | ||
await perspective.worker(), | ||
metadata | ||
); | ||
|
||
return total; | ||
}, | ||
[path, suite] | ||
); | ||
|
||
for (const { obs_records, stats } of items) { | ||
process.send({ obs_records, stats }); | ||
} | ||
} | ||
|
||
await test_suite("table_suite"); | ||
await test_suite("view_suite"); | ||
await test_suite("to_data_suite"); | ||
} | ||
); |
Oops, something went wrong.