-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move param curation scripts and update scale factor parameters (#113)
- Loading branch information
1 parent
946fc48
commit 570c508
Showing
7 changed files
with
43 additions
and
37 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,4 +25,5 @@ sf*/ | |
sf*.tar | ||
sf*.tar.gz | ||
|
||
paramgen/__pycache__/ | ||
tools/paramgen/__pycache__/ |
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
File renamed without changes.
File renamed without changes.
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,18 @@ | ||
#!/bin/bash | ||
|
||
LDBC_FINBENCH_DATAGEN_JAR=target/ldbc_finbench_datagen-0.2.0-SNAPSHOT-jar-with-dependencies.jar | ||
OUTPUT_DIR=out/sf3/ | ||
|
||
# Note: generate factor tables with --generate-factors | ||
|
||
echo "start factor table generation" | ||
|
||
time spark-submit --master local[*] \ | ||
--class ldbc.finbench.datagen.LdbcDatagen \ | ||
--driver-memory 480g \ | ||
${LDBC_FINBENCH_DATAGEN_JAR} \ | ||
--output-dir ${OUTPUT_DIR} \ | ||
--factor-format csv \ | ||
--generate-factors | ||
|
||
echo "start parameter curation" |
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