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/benchmark/Dockerfile b/benchmark/Dockerfile | |
index f1c7bc4..d05de8d 100644 | |
--- a/benchmark/Dockerfile | |
+++ b/benchmark/Dockerfile | |
@@ -8,9 +8,13 @@ RUN mkdir -p /go/src/github.com/grafana | |
RUN cd /go/src/github.com/grafana && \ | |
git clone https://github.com/raintank/grafana-api-golang-client.git && \ | |
cd grafana-api-golang-client && \ | |
- git checkout raintank #&& \ | |
+ git checkout raintank #&& |
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
# PYTHONPATH=/home/austin/r/stp/build/bindings/python | |
import sys, collections | |
import sym | |
_PageSize = 8192 | |
_PageShift = 13 | |
_HeapAllocChunk = 1 << 20 | |
_MaxArena32 = 2 << 30 |
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
package main | |
import ( | |
"math/rand" | |
"runtime" | |
"sync/atomic" | |
"time" | |
) | |
const ( |
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
package main | |
import ( | |
"math/rand" | |
"sync/atomic" | |
"time" | |
) | |
const ( | |
numGs = 10 |
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
package main | |
import ( | |
"flag" | |
"fmt" | |
"image" | |
"image/png" | |
"log" | |
"os" |
NewerOlder