Skip to content

Commit

Permalink
Download jetstream src from github instead of browserbench.org (#3196)
Browse files Browse the repository at this point in the history
Downloading benchmark jetstream's source files one by one from
https://browserbench.org by using wget is time consuming and not
stable, this PR updates the scripts to download the files from
https://github.com/mozilla/perf-automation.
  • Loading branch information
wenyongh authored Mar 4, 2024
1 parent cd63b3b commit 01575fc
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 80 deletions.
58 changes: 21 additions & 37 deletions tests/benchmarks/jetstream/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ source /opt/emsdk/emsdk_env.sh

PLATFORM=$(uname -s | tr A-Z a-z)

WORK_DIR=$PWD
OUT_DIR=$PWD/out
WAMRC_CMD=$PWD/../../../wamr-compiler/build/wamrc
JETSTREAM_DIR=$PWD/perf-automation/benchmarks/JetStream2/wasm

mkdir -p jetstream
mkdir -p tsf-src
mkdir -p ${OUT_DIR}

if [[ $1 != "--no-simd" ]];then
Expand All @@ -22,20 +22,16 @@ else
WASM_SIMD_FLAGS=""
fi

cd jetstream

echo "Download source files .."
wget -N https://browserbench.org/JetStream/wasm/gcc-loops.cpp
wget -N https://browserbench.org/JetStream/wasm/quicksort.c
wget -N https://browserbench.org/JetStream/wasm/HashSet.cpp
wget -N https://browserbench.org/JetStream/simple/float-mm.c

if [[ $? != 0 ]]; then
exit
if [ ! -d perf-automation ]; then
git clone https://github.com/mozilla/perf-automation.git
echo "Patch source files .."
cd perf-automation
patch -p1 -N < ../jetstream.patch
fi

echo "Patch source files .."
patch -p1 -N < ../jetstream.patch
cd ${JETSTREAM_DIR}

# Build gcc-loops

echo "Build gcc-loops with g++ .."
g++ -O3 ${NATIVE_SIMD_FLAGS} -o ${OUT_DIR}/gcc-loops_native gcc-loops.cpp
Expand All @@ -56,6 +52,8 @@ if [[ ${PLATFORM} == "linux" ]]; then
${WAMRC_CMD} --enable-segue -o ${OUT_DIR}/gcc-loops_segue.aot ${OUT_DIR}/gcc-loops.wasm
fi

# Build quicksort

echo "Build quicksort with gcc .."
gcc -O3 ${NATIVE_SIMD_FLAGS} -o ${OUT_DIR}/quicksort_native quicksort.c

Expand All @@ -74,6 +72,8 @@ if [[ ${PLATFORM} == "linux" ]]; then
${WAMRC_CMD} --enable-segue -o ${OUT_DIR}/quicksort_segue.aot ${OUT_DIR}/quicksort.wasm
fi

# Build HashSet

echo "Build HashSet with g++ .."
g++ -O3 ${NATIVE_SIMD_FLAGS} -o ${OUT_DIR}/HashSet_native HashSet.cpp \
-lstdc++
Expand All @@ -93,6 +93,10 @@ if [[ ${PLATFORM} == "linux" ]]; then
${WAMRC_CMD} --enable-segue -o ${OUT_DIR}/HashSet_segue.aot ${OUT_DIR}/HashSet.wasm
fi

# Build float-mm

cd ${JETSTREAM_DIR}/../simple

echo "Build float-mm with gcc .."
gcc -O3 ${NATIVE_SIMD_FLAGS} -o ${OUT_DIR}/float-mm_native float-mm.c

Expand All @@ -111,7 +115,9 @@ if [[ ${PLATFORM} == "linux" ]]; then
${WAMRC_CMD} --enable-segue -o ${OUT_DIR}/float-mm_segue.aot ${OUT_DIR}/float-mm.wasm
fi

cd ../tsf-src
# Build tsf

cd ${JETSTREAM_DIR}/TSF

tsf_srcs="tsf_asprintf.c tsf_buffer.c tsf_error.c tsf_reflect.c tsf_st.c \
tsf_type.c tsf_io.c tsf_native.c tsf_generator.c tsf_st_typetable.c \
Expand All @@ -127,28 +133,6 @@ tsf_srcs="tsf_asprintf.c tsf_buffer.c tsf_error.c tsf_reflect.c tsf_st.c \
tsf_fsdb.c tsf_fsdb_protocol.c tsf_define_helpers.c tsf_ir.c \
tsf_ir_different.c tsf_ir_speed.c"

tsf_files="${tsf_srcs} config.h gpc_worklist.h \
tsf_config_stub.h tsf.h tsf_internal.h tsf_region.h tsf_types.h \
gpc.h tsf_atomics.h tsf_define_helpers.h tsf_indent.h tsf_inttypes.h \
tsf_serial_protocol.h tsf_util.h gpc_int_common.h tsf_build_defines.h \
tsf_format.h tsf_internal_config.h tsf_ir_different.h tsf_sha1.h \
tsf_zip_abstract.h gpc_internal.h tsf_config.h tsf_fsdb_protocol.h \
tsf_internal_config_stub.h tsf_ir.h tsf_st.h \
gpc_instruction_dispatch.gen gpc_instruction_stack_effects.gen \
gpc_instruction_to_string.gen gpc_instruction_size.gen \
gpc_instruction_static_size.gen gpc_interpreter.gen"

echo "Download tsf source files .."
for t in ${tsf_files}
do
wget -N "https://browserbench.org/JetStream/wasm/TSF/${t}"
if [[ $? != 0 ]]; then
exit
fi
done

patch -p1 -N < ../tsf.patch

echo "Build tsf with gcc .."
gcc \
-o ${OUT_DIR}/tsf_native -O3 ${NATIVE_SIMD_FLAGS} \
Expand Down
54 changes: 47 additions & 7 deletions tests/benchmarks/jetstream/jetstream.patch
Original file line number Diff line number Diff line change
@@ -1,23 +1,63 @@
diff -urN jetstream-org/HashSet.cpp jetstream/HashSet.cpp
--- jetstream-org/HashSet.cpp 2020-10-30 04:12:42.000000000 +0800
+++ jetstream/HashSet.cpp 2022-01-24 17:11:08.619831711 +0800
diff --git a/benchmarks/JetStream2/wasm/HashSet.cpp b/benchmarks/JetStream2/wasm/HashSet.cpp
index eca979b0..d1bf4d3d 100644
--- a/benchmarks/JetStream2/wasm/HashSet.cpp
+++ b/benchmarks/JetStream2/wasm/HashSet.cpp
@@ -22,8 +22,10 @@

#include <algorithm>
#include <memory>
+#include <limits>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <sys/time.h>

// Compile with: xcrun clang++ -o HashSet HashSet.cpp -O2 -W -framework Foundation -licucore -std=c++11 -fvisibility=hidden -DNDEBUG=1
@@ -76,7 +78,7 @@
@@ -76,7 +78,7 @@ template<typename ToType, typename FromType>
inline ToType bitwise_cast(FromType from)
{
typename std::remove_const<ToType>::type to { };
- std::memcpy(&to, &from, sizeof(to));
+ memcpy(&to, &from, sizeof(to));
return to;
}


diff --git a/benchmarks/JetStream2/wasm/TSF/gpc_code_gen_util.c b/benchmarks/JetStream2/wasm/TSF/gpc_code_gen_util.c
index 56220fa7..7e3a365b 100644
--- a/benchmarks/JetStream2/wasm/TSF/gpc_code_gen_util.c
+++ b/benchmarks/JetStream2/wasm/TSF/gpc_code_gen_util.c
@@ -34,6 +34,8 @@
#include <errno.h>
#include <dirent.h>

+int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result);
+
/* code generation debugging */

/* NOTE: It is now the case that the count may be incremented multiple times,
diff --git a/benchmarks/JetStream2/wasm/TSF/tsf_internal.h b/benchmarks/JetStream2/wasm/TSF/tsf_internal.h
index 225a248b..ae39d3d3 100644
--- a/benchmarks/JetStream2/wasm/TSF/tsf_internal.h
+++ b/benchmarks/JetStream2/wasm/TSF/tsf_internal.h
@@ -429,6 +429,7 @@ struct tsf_fsdb {
#endif
tsf_fsdb_connection_t *connection;
#endif
+ uint32_t __padding;
} remote;
} u;
tsf_limits_t *limits;
diff --git a/benchmarks/JetStream2/wasm/TSF/tsf_ir_speed.c b/benchmarks/JetStream2/wasm/TSF/tsf_ir_speed.c
index dd75c43e..79435c42 100644
--- a/benchmarks/JetStream2/wasm/TSF/tsf_ir_speed.c
+++ b/benchmarks/JetStream2/wasm/TSF/tsf_ir_speed.c
@@ -63,6 +63,9 @@ static void writeTest(const char *filename,
Program_t *program;
unsigned elementIndex;

+ if (!(programIndex % 100))
+ printf("##programIndex: %u\n", programIndex);
+
CS(program = tsf_region_create(sizeof(Program_t)));

program->globals.len = numDecls + numDefns;
36 changes: 0 additions & 36 deletions tests/benchmarks/jetstream/tsf.patch

This file was deleted.

0 comments on commit 01575fc

Please sign in to comment.