From 697cd17b59c361273684b7f78d0f600df38bcdcd Mon Sep 17 00:00:00 2001 From: Pankaj Garg Date: Sat, 27 Apr 2019 20:45:38 -0700 Subject: [PATCH] Use GPU nodes for blockstreamer as well if rest of testnet has GPUs (#4046) - The blockstreamer crashes otherwise, as sigverify() looks for CUDA libs --- net/gce.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net/gce.sh b/net/gce.sh index 4a6d3a7527..de1c3c82c0 100755 --- a/net/gce.sh +++ b/net/gce.sh @@ -163,11 +163,13 @@ while getopts "h?p:Pn:c:z:gG:a:d:buxf" opt; do enableGpu=true bootstrapLeaderMachineType=$gpuBootstrapLeaderMachineType fullNodeMachineType=$bootstrapLeaderMachineType + blockstreamerMachineType=$bootstrapLeaderMachineType ;; G) enableGpu=true bootstrapLeaderMachineType="$OPTARG" fullNodeMachineType=$bootstrapLeaderMachineType + blockstreamerMachineType=$bootstrapLeaderMachineType ;; a) customAddress=$OPTARG