Use GPU nodes for blockstreamer as well if rest of testnet has GPUs (#4046)
- The blockstreamer crashes otherwise, as sigverify() looks for CUDA libs
This commit is contained in:
parent
13fcfcb964
commit
697cd17b59
|
@ -163,11 +163,13 @@ while getopts "h?p:Pn:c:z:gG:a:d:buxf" opt; do
|
||||||
enableGpu=true
|
enableGpu=true
|
||||||
bootstrapLeaderMachineType=$gpuBootstrapLeaderMachineType
|
bootstrapLeaderMachineType=$gpuBootstrapLeaderMachineType
|
||||||
fullNodeMachineType=$bootstrapLeaderMachineType
|
fullNodeMachineType=$bootstrapLeaderMachineType
|
||||||
|
blockstreamerMachineType=$bootstrapLeaderMachineType
|
||||||
;;
|
;;
|
||||||
G)
|
G)
|
||||||
enableGpu=true
|
enableGpu=true
|
||||||
bootstrapLeaderMachineType="$OPTARG"
|
bootstrapLeaderMachineType="$OPTARG"
|
||||||
fullNodeMachineType=$bootstrapLeaderMachineType
|
fullNodeMachineType=$bootstrapLeaderMachineType
|
||||||
|
blockstreamerMachineType=$bootstrapLeaderMachineType
|
||||||
;;
|
;;
|
||||||
a)
|
a)
|
||||||
customAddress=$OPTARG
|
customAddress=$OPTARG
|
||||||
|
|
Loading…
Reference in New Issue