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
{ | |
"embeddings": [ | |
{ | |
"tensorName": "w2v multi domain", | |
"tensorShape": [ | |
1000, | |
50 | |
], | |
"tensorPath": "https://github.com/ZhouXing19/WordEmbeddingfromMultiDomain/blob/master/vectors.tsv", | |
"metadataPath": "https://github.com/ZhouXing19/WordEmbeddingfromMultiDomain/blob/master/metadata.tsv" |
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
{ | |
"embeddings": [ | |
{ | |
"tensorName": "Energy Sector", | |
"tensorShape": [ | |
22406, | |
100 | |
], | |
"tensorPath": "https://github.com/ZhouXing19/ContAnalysisFinalProj/blob/master/tsvs/Energy_vectors.tsv", | |
"metadataPath": "https://github.com/ZhouXing19/ContAnalysisFinalProj/blob/master/tsvs/Energy_metadata.tsv" |
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
diff --git a/pkg/ccl/workloadccl/fixture_test.go b/pkg/ccl/workloadccl/fixture_test.go | |
index 25e7f0f0c4..3131e63a25 100644 | |
--- a/pkg/ccl/workloadccl/fixture_test.go | |
+++ b/pkg/ccl/workloadccl/fixture_test.go | |
@@ -28,6 +28,7 @@ import ( | |
"github.com/cockroachdb/cockroach/pkg/util/leaktest" | |
"github.com/cockroachdb/cockroach/pkg/util/timeutil" | |
"github.com/cockroachdb/cockroach/pkg/workload" | |
+ "github.com/cockroachdb/errors" | |
"github.com/spf13/pflag" |
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
#!/usr/local/bin/bash | |
# bash version should be > 5 | |
curdate=$(date '+%Y%m%d') | |
cloud= | |
args= | |
function usage() { | |
echo "$1 |
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
#!/bin/bash | |
NAME_EXTRA=${NAME_EXTRA:=ori} | |
CLOUD="gce" | |
CLUSTER="$CRL_USERNAME-cldrprt23-n2-standard-8-4140608692-$NAME_EXTRA" | |
TMUX_SESSION="cloud-report" | |
WEST_CLUSTER="${CLUSTER}-west" | |
west_cluster_created='' |
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
diff --git a/scripts/gen/tpcc.sh b/scripts/gen/tpcc.sh | |
index c99761f..1424b42 100644 | |
--- a/scripts/gen/tpcc.sh | |
+++ b/scripts/gen/tpcc.sh | |
@@ -10,6 +10,7 @@ f_active_per_core=125 | |
f_skip_load='' | |
f_load_args='' | |
f_duration="30m" | |
+f_nodes=4 | |
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
diff --git a/scripts/gen/tpcc.sh b/scripts/gen/tpcc.sh | |
index c99761f..4da9bf2 100644 | |
--- a/scripts/gen/tpcc.sh | |
+++ b/scripts/gen/tpcc.sh | |
@@ -92,17 +92,21 @@ then | |
echo "done loading" | |
fi | |
+num_vcpu_per_node=$(cat /proc/cpuinfo | grep processor | wc -l) | |
+ |
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
diff --git a/scripts/gen/tpcc.sh b/scripts/gen/tpcc.sh | |
index c99761f..69ca4db 100644 | |
--- a/scripts/gen/tpcc.sh | |
+++ b/scripts/gen/tpcc.sh | |
@@ -92,17 +92,22 @@ then | |
echo "done loading" | |
fi | |
+num_vcpu_per_node=$(cat /proc/cpuinfo | grep processor | wc -l) | |
+ |
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
#!/bin/bash | |
set -ex | |
pidfile="$HOME/tpcc-bench.pid" | |
f_force='' | |
f_wait='' | |
f_active=0 | |
f_warehouses=10000 | |
f_active_per_core=125 | |
f_skip_load='' |
This file has been truncated, but you can view the full file.
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
diff --git a/.bazelrc b/.bazelrc | |
index dc0596733f..2e0f49554a 100644 | |
--- a/.bazelrc | |
+++ b/.bazelrc | |
@@ -26,27 +26,18 @@ build:cross --stamp | |
build:cross --define cockroach_cross=y | |
# Cross-compilation configurations. Add e.g. --config=crosslinux to turn these on. | |
-# Generally these should be used for development builds. Each cross config has | |
-# a corresponding `base` config that is the same thing but without the |
OlderNewer