From c724809de49ec80d0c829d55d2e3d9556232025b Mon Sep 17 00:00:00 2001 From: Valdis Date: Sun, 12 May 2019 23:09:12 +0200 Subject: [PATCH 1/4] autodiscover all configs add all the latest configs up to 0.4.0-SNAPSHOT --- confs/scala-native-0.3.8/run | 2 +- .../build.sbt | 6 +++ .../compile | 1 + .../plugins.sbt | 1 + confs/scala-native-0.3.9-SNAPSHOT-commix/run | 1 + .../build.sbt | 6 +++ .../compile | 1 + .../plugins.sbt | 1 + .../scala-native-0.3.9-SNAPSHOT-full-lto/run | 1 + .../build.sbt | 6 +++ .../compile | 1 + .../plugins.sbt | 1 + confs/scala-native-0.3.9-SNAPSHOT-no-lto/run | 1 + confs/scala-native-0.3.9-SNAPSHOT/build.sbt | 6 +++ confs/scala-native-0.3.9-SNAPSHOT/compile | 1 + confs/scala-native-0.3.9-SNAPSHOT/plugins.sbt | 1 + confs/scala-native-0.3.9-SNAPSHOT/run | 1 + confs/scala-native-0.3.9/build.sbt | 6 +++ confs/scala-native-0.3.9/compile | 1 + confs/scala-native-0.3.9/plugins.sbt | 1 + confs/scala-native-0.3.9/run | 1 + .../build.sbt | 6 +++ .../compile | 1 + .../plugins.sbt | 1 + confs/scala-native-0.4.0-SNAPSHOT-commix/run | 1 + confs/scala-native-0.4.0-SNAPSHOT/build.sbt | 6 +++ confs/scala-native-0.4.0-SNAPSHOT/compile | 1 + confs/scala-native-0.4.0-SNAPSHOT/plugins.sbt | 1 + confs/scala-native-0.4.0-SNAPSHOT/run | 1 + scripts/run.py | 49 ++++++++++++++++--- 30 files changed, 105 insertions(+), 9 deletions(-) create mode 100644 confs/scala-native-0.3.9-SNAPSHOT-commix/build.sbt create mode 100644 confs/scala-native-0.3.9-SNAPSHOT-commix/compile create mode 100644 confs/scala-native-0.3.9-SNAPSHOT-commix/plugins.sbt create mode 100644 confs/scala-native-0.3.9-SNAPSHOT-commix/run create mode 100644 confs/scala-native-0.3.9-SNAPSHOT-full-lto/build.sbt create mode 100644 confs/scala-native-0.3.9-SNAPSHOT-full-lto/compile create mode 100644 confs/scala-native-0.3.9-SNAPSHOT-full-lto/plugins.sbt create mode 100644 confs/scala-native-0.3.9-SNAPSHOT-full-lto/run create mode 100644 confs/scala-native-0.3.9-SNAPSHOT-no-lto/build.sbt create mode 100644 confs/scala-native-0.3.9-SNAPSHOT-no-lto/compile create mode 100644 confs/scala-native-0.3.9-SNAPSHOT-no-lto/plugins.sbt create mode 100644 confs/scala-native-0.3.9-SNAPSHOT-no-lto/run create mode 100644 confs/scala-native-0.3.9-SNAPSHOT/build.sbt create mode 100644 confs/scala-native-0.3.9-SNAPSHOT/compile create mode 100644 confs/scala-native-0.3.9-SNAPSHOT/plugins.sbt create mode 100644 confs/scala-native-0.3.9-SNAPSHOT/run create mode 100644 confs/scala-native-0.3.9/build.sbt create mode 100644 confs/scala-native-0.3.9/compile create mode 100644 confs/scala-native-0.3.9/plugins.sbt create mode 100644 confs/scala-native-0.3.9/run create mode 100644 confs/scala-native-0.4.0-SNAPSHOT-commix/build.sbt create mode 100644 confs/scala-native-0.4.0-SNAPSHOT-commix/compile create mode 100644 confs/scala-native-0.4.0-SNAPSHOT-commix/plugins.sbt create mode 100644 confs/scala-native-0.4.0-SNAPSHOT-commix/run create mode 100644 confs/scala-native-0.4.0-SNAPSHOT/build.sbt create mode 100644 confs/scala-native-0.4.0-SNAPSHOT/compile create mode 100644 confs/scala-native-0.4.0-SNAPSHOT/plugins.sbt create mode 100644 confs/scala-native-0.4.0-SNAPSHOT/run diff --git a/confs/scala-native-0.3.8/run b/confs/scala-native-0.3.8/run index 0ea88ec..ae89e34 100644 --- a/confs/scala-native-0.3.8/run +++ b/confs/scala-native-0.3.8/run @@ -1 +1 @@ -target/scala-2.11/benchs-out +target/scala-2.11/scala-native-benchmarks-out diff --git a/confs/scala-native-0.3.9-SNAPSHOT-commix/build.sbt b/confs/scala-native-0.3.9-SNAPSHOT-commix/build.sbt new file mode 100644 index 0000000..2104b7a --- /dev/null +++ b/confs/scala-native-0.3.9-SNAPSHOT-commix/build.sbt @@ -0,0 +1,6 @@ +scalaVersion := "2.11.12" +enablePlugins(ScalaNativePlugin) +nativeLinkStubs := true +nativeGC := "commix" +nativeMode := "release" +nativeLTO := "thin" diff --git a/confs/scala-native-0.3.9-SNAPSHOT-commix/compile b/confs/scala-native-0.3.9-SNAPSHOT-commix/compile new file mode 100644 index 0000000..2f3f09f --- /dev/null +++ b/confs/scala-native-0.3.9-SNAPSHOT-commix/compile @@ -0,0 +1 @@ +nativeLink diff --git a/confs/scala-native-0.3.9-SNAPSHOT-commix/plugins.sbt b/confs/scala-native-0.3.9-SNAPSHOT-commix/plugins.sbt new file mode 100644 index 0000000..c1423b6 --- /dev/null +++ b/confs/scala-native-0.3.9-SNAPSHOT-commix/plugins.sbt @@ -0,0 +1 @@ +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.3.9-SNAPSHOT") diff --git a/confs/scala-native-0.3.9-SNAPSHOT-commix/run b/confs/scala-native-0.3.9-SNAPSHOT-commix/run new file mode 100644 index 0000000..ae89e34 --- /dev/null +++ b/confs/scala-native-0.3.9-SNAPSHOT-commix/run @@ -0,0 +1 @@ +target/scala-2.11/scala-native-benchmarks-out diff --git a/confs/scala-native-0.3.9-SNAPSHOT-full-lto/build.sbt b/confs/scala-native-0.3.9-SNAPSHOT-full-lto/build.sbt new file mode 100644 index 0000000..fae449a --- /dev/null +++ b/confs/scala-native-0.3.9-SNAPSHOT-full-lto/build.sbt @@ -0,0 +1,6 @@ +scalaVersion := "2.11.12" +enablePlugins(ScalaNativePlugin) +nativeLinkStubs := true +nativeGC := "immix" +nativeMode := "release" +nativeLTO := "full" diff --git a/confs/scala-native-0.3.9-SNAPSHOT-full-lto/compile b/confs/scala-native-0.3.9-SNAPSHOT-full-lto/compile new file mode 100644 index 0000000..2f3f09f --- /dev/null +++ b/confs/scala-native-0.3.9-SNAPSHOT-full-lto/compile @@ -0,0 +1 @@ +nativeLink diff --git a/confs/scala-native-0.3.9-SNAPSHOT-full-lto/plugins.sbt b/confs/scala-native-0.3.9-SNAPSHOT-full-lto/plugins.sbt new file mode 100644 index 0000000..c1423b6 --- /dev/null +++ b/confs/scala-native-0.3.9-SNAPSHOT-full-lto/plugins.sbt @@ -0,0 +1 @@ +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.3.9-SNAPSHOT") diff --git a/confs/scala-native-0.3.9-SNAPSHOT-full-lto/run b/confs/scala-native-0.3.9-SNAPSHOT-full-lto/run new file mode 100644 index 0000000..ae89e34 --- /dev/null +++ b/confs/scala-native-0.3.9-SNAPSHOT-full-lto/run @@ -0,0 +1 @@ +target/scala-2.11/scala-native-benchmarks-out diff --git a/confs/scala-native-0.3.9-SNAPSHOT-no-lto/build.sbt b/confs/scala-native-0.3.9-SNAPSHOT-no-lto/build.sbt new file mode 100644 index 0000000..2fc1873 --- /dev/null +++ b/confs/scala-native-0.3.9-SNAPSHOT-no-lto/build.sbt @@ -0,0 +1,6 @@ +scalaVersion := "2.11.12" +enablePlugins(ScalaNativePlugin) +nativeLinkStubs := true +nativeGC := "immix" +nativeMode := "release" +nativeLTO := "none" diff --git a/confs/scala-native-0.3.9-SNAPSHOT-no-lto/compile b/confs/scala-native-0.3.9-SNAPSHOT-no-lto/compile new file mode 100644 index 0000000..2f3f09f --- /dev/null +++ b/confs/scala-native-0.3.9-SNAPSHOT-no-lto/compile @@ -0,0 +1 @@ +nativeLink diff --git a/confs/scala-native-0.3.9-SNAPSHOT-no-lto/plugins.sbt b/confs/scala-native-0.3.9-SNAPSHOT-no-lto/plugins.sbt new file mode 100644 index 0000000..c1423b6 --- /dev/null +++ b/confs/scala-native-0.3.9-SNAPSHOT-no-lto/plugins.sbt @@ -0,0 +1 @@ +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.3.9-SNAPSHOT") diff --git a/confs/scala-native-0.3.9-SNAPSHOT-no-lto/run b/confs/scala-native-0.3.9-SNAPSHOT-no-lto/run new file mode 100644 index 0000000..ae89e34 --- /dev/null +++ b/confs/scala-native-0.3.9-SNAPSHOT-no-lto/run @@ -0,0 +1 @@ +target/scala-2.11/scala-native-benchmarks-out diff --git a/confs/scala-native-0.3.9-SNAPSHOT/build.sbt b/confs/scala-native-0.3.9-SNAPSHOT/build.sbt new file mode 100644 index 0000000..ae87f31 --- /dev/null +++ b/confs/scala-native-0.3.9-SNAPSHOT/build.sbt @@ -0,0 +1,6 @@ +scalaVersion := "2.11.12" +enablePlugins(ScalaNativePlugin) +nativeLinkStubs := true +nativeGC := "immix" +nativeMode := "release" +nativeLTO := "thin" diff --git a/confs/scala-native-0.3.9-SNAPSHOT/compile b/confs/scala-native-0.3.9-SNAPSHOT/compile new file mode 100644 index 0000000..2f3f09f --- /dev/null +++ b/confs/scala-native-0.3.9-SNAPSHOT/compile @@ -0,0 +1 @@ +nativeLink diff --git a/confs/scala-native-0.3.9-SNAPSHOT/plugins.sbt b/confs/scala-native-0.3.9-SNAPSHOT/plugins.sbt new file mode 100644 index 0000000..c1423b6 --- /dev/null +++ b/confs/scala-native-0.3.9-SNAPSHOT/plugins.sbt @@ -0,0 +1 @@ +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.3.9-SNAPSHOT") diff --git a/confs/scala-native-0.3.9-SNAPSHOT/run b/confs/scala-native-0.3.9-SNAPSHOT/run new file mode 100644 index 0000000..ae89e34 --- /dev/null +++ b/confs/scala-native-0.3.9-SNAPSHOT/run @@ -0,0 +1 @@ +target/scala-2.11/scala-native-benchmarks-out diff --git a/confs/scala-native-0.3.9/build.sbt b/confs/scala-native-0.3.9/build.sbt new file mode 100644 index 0000000..ae87f31 --- /dev/null +++ b/confs/scala-native-0.3.9/build.sbt @@ -0,0 +1,6 @@ +scalaVersion := "2.11.12" +enablePlugins(ScalaNativePlugin) +nativeLinkStubs := true +nativeGC := "immix" +nativeMode := "release" +nativeLTO := "thin" diff --git a/confs/scala-native-0.3.9/compile b/confs/scala-native-0.3.9/compile new file mode 100644 index 0000000..2f3f09f --- /dev/null +++ b/confs/scala-native-0.3.9/compile @@ -0,0 +1 @@ +nativeLink diff --git a/confs/scala-native-0.3.9/plugins.sbt b/confs/scala-native-0.3.9/plugins.sbt new file mode 100644 index 0000000..81f6e69 --- /dev/null +++ b/confs/scala-native-0.3.9/plugins.sbt @@ -0,0 +1 @@ +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.3.9") diff --git a/confs/scala-native-0.3.9/run b/confs/scala-native-0.3.9/run new file mode 100644 index 0000000..ae89e34 --- /dev/null +++ b/confs/scala-native-0.3.9/run @@ -0,0 +1 @@ +target/scala-2.11/scala-native-benchmarks-out diff --git a/confs/scala-native-0.4.0-SNAPSHOT-commix/build.sbt b/confs/scala-native-0.4.0-SNAPSHOT-commix/build.sbt new file mode 100644 index 0000000..2104b7a --- /dev/null +++ b/confs/scala-native-0.4.0-SNAPSHOT-commix/build.sbt @@ -0,0 +1,6 @@ +scalaVersion := "2.11.12" +enablePlugins(ScalaNativePlugin) +nativeLinkStubs := true +nativeGC := "commix" +nativeMode := "release" +nativeLTO := "thin" diff --git a/confs/scala-native-0.4.0-SNAPSHOT-commix/compile b/confs/scala-native-0.4.0-SNAPSHOT-commix/compile new file mode 100644 index 0000000..2f3f09f --- /dev/null +++ b/confs/scala-native-0.4.0-SNAPSHOT-commix/compile @@ -0,0 +1 @@ +nativeLink diff --git a/confs/scala-native-0.4.0-SNAPSHOT-commix/plugins.sbt b/confs/scala-native-0.4.0-SNAPSHOT-commix/plugins.sbt new file mode 100644 index 0000000..2a63bf0 --- /dev/null +++ b/confs/scala-native-0.4.0-SNAPSHOT-commix/plugins.sbt @@ -0,0 +1 @@ +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.0-SNAPSHOT") diff --git a/confs/scala-native-0.4.0-SNAPSHOT-commix/run b/confs/scala-native-0.4.0-SNAPSHOT-commix/run new file mode 100644 index 0000000..ae89e34 --- /dev/null +++ b/confs/scala-native-0.4.0-SNAPSHOT-commix/run @@ -0,0 +1 @@ +target/scala-2.11/scala-native-benchmarks-out diff --git a/confs/scala-native-0.4.0-SNAPSHOT/build.sbt b/confs/scala-native-0.4.0-SNAPSHOT/build.sbt new file mode 100644 index 0000000..ae87f31 --- /dev/null +++ b/confs/scala-native-0.4.0-SNAPSHOT/build.sbt @@ -0,0 +1,6 @@ +scalaVersion := "2.11.12" +enablePlugins(ScalaNativePlugin) +nativeLinkStubs := true +nativeGC := "immix" +nativeMode := "release" +nativeLTO := "thin" diff --git a/confs/scala-native-0.4.0-SNAPSHOT/compile b/confs/scala-native-0.4.0-SNAPSHOT/compile new file mode 100644 index 0000000..2f3f09f --- /dev/null +++ b/confs/scala-native-0.4.0-SNAPSHOT/compile @@ -0,0 +1 @@ +nativeLink diff --git a/confs/scala-native-0.4.0-SNAPSHOT/plugins.sbt b/confs/scala-native-0.4.0-SNAPSHOT/plugins.sbt new file mode 100644 index 0000000..2a63bf0 --- /dev/null +++ b/confs/scala-native-0.4.0-SNAPSHOT/plugins.sbt @@ -0,0 +1 @@ +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.0-SNAPSHOT") diff --git a/confs/scala-native-0.4.0-SNAPSHOT/run b/confs/scala-native-0.4.0-SNAPSHOT/run new file mode 100644 index 0000000..ae89e34 --- /dev/null +++ b/confs/scala-native-0.4.0-SNAPSHOT/run @@ -0,0 +1 @@ +target/scala-2.11/scala-native-benchmarks-out diff --git a/scripts/run.py b/scripts/run.py index 7a02658..1cbec53 100755 --- a/scripts/run.py +++ b/scripts/run.py @@ -1,9 +1,10 @@ #!/usr/bin/env python -import sys import os import errno import subprocess as subp import shutil as sh +import argparse + def mkdir(path): try: @@ -14,10 +15,12 @@ def mkdir(path): else: raise + def slurp(path): with open(path) as f: return f.read().strip() + def where(cmd): if os.path.isfile(cmd): return cmd @@ -30,16 +33,19 @@ def where(cmd): else: return None + def run(cmd): print(">>> " + str(cmd)) return subp.check_output(cmd) + def compile(bench, compilecmd): cmd = [sbt, '-J-Xmx6G', 'clean'] cmd.append('set mainClass in Compile := Some("{}")'.format(bench)) cmd.append(compilecmd) return run(cmd) + sbt = where('sbt') benchmarks = [ @@ -61,15 +67,15 @@ def compile(bench, compilecmd): 'mandelbrot.MandelbrotBenchmark', ] -configurations = [ - # 'jvm', - # 'scala-native-0.3.8', - # 'baseline', - 'current' -] +stable = 'scala-native-0.3.9' +latest = 'scala-native-0.4.0-SNAPSHOT' + +confs_path = os.path.dirname(os.path.dirname(os.path.realpath(__file__))) + "/confs" + +all_configs = next(os.walk(confs_path))[1] if 'GRAALVM_HOME' in os.environ: - configurations += [ + all_configs += [ 'native-image', 'native-image-pgo', ] @@ -78,7 +84,34 @@ def compile(bench, compilecmd): batches = 4000 batch_size = 1 + +def expand_wild_cards(arg): + if arg == None: + return arg + elif arg.startswith("latest"): + return latest + arg[len("latest"):] + elif arg.startswith("stable"): + return stable + arg[len("stable"):] + else: + return arg + + if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("set", nargs='*', default=[None]) + args = parser.parse_args() + print args + + configurations = [] + for choice in args.set: + expanded = expand_wild_cards(choice) + if expanded == None: + configurations = [stable, latest] + else: + configurations += [expanded] + + print "configurations:", configurations + for conf in configurations: for bench in benchmarks: print('--- conf: {}, bench: {}'.format(conf, bench)) From 3b3115737d05c8624d9645c148844f7e3d06cc98 Mon Sep 17 00:00:00 2001 From: Valdis Date: Sun, 12 May 2019 23:23:54 +0200 Subject: [PATCH 2/4] explicitly set project names --- build.sbt | 1 + confs/baseline/build.sbt | 1 + confs/current/build.sbt | 1 + confs/jvm/build.sbt | 1 + confs/native-image-pgo/build.sbt | 1 + confs/native-image/build.sbt | 1 + confs/scala-native-0.3.7/build.sbt | 1 + confs/scala-native-0.3.7/run | 2 +- confs/scala-native-0.3.8/build.sbt | 1 + confs/scala-native-0.3.9/build.sbt | 1 + 10 files changed, 10 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index ae87f31..441c07f 100644 --- a/build.sbt +++ b/build.sbt @@ -1,3 +1,4 @@ +name := "scala-native-benchmarks" scalaVersion := "2.11.12" enablePlugins(ScalaNativePlugin) nativeLinkStubs := true diff --git a/confs/baseline/build.sbt b/confs/baseline/build.sbt index ae87f31..441c07f 100644 --- a/confs/baseline/build.sbt +++ b/confs/baseline/build.sbt @@ -1,3 +1,4 @@ +name := "scala-native-benchmarks" scalaVersion := "2.11.12" enablePlugins(ScalaNativePlugin) nativeLinkStubs := true diff --git a/confs/current/build.sbt b/confs/current/build.sbt index ae87f31..441c07f 100644 --- a/confs/current/build.sbt +++ b/confs/current/build.sbt @@ -1,3 +1,4 @@ +name := "scala-native-benchmarks" scalaVersion := "2.11.12" enablePlugins(ScalaNativePlugin) nativeLinkStubs := true diff --git a/confs/jvm/build.sbt b/confs/jvm/build.sbt index 9874e27..ef3680d 100644 --- a/confs/jvm/build.sbt +++ b/confs/jvm/build.sbt @@ -1 +1,2 @@ +name := "scala-native-benchmarks" scalaVersion := "2.11.12" diff --git a/confs/native-image-pgo/build.sbt b/confs/native-image-pgo/build.sbt index 65e12d6..c622b0a 100644 --- a/confs/native-image-pgo/build.sbt +++ b/confs/native-image-pgo/build.sbt @@ -1,3 +1,4 @@ +name := "scala-native-benchmarks" scalaVersion := "2.11.12" val instrumentedRuns = settingKey[Int]("The number of instrumented runs.") diff --git a/confs/native-image/build.sbt b/confs/native-image/build.sbt index 065cf09..4073552 100644 --- a/confs/native-image/build.sbt +++ b/confs/native-image/build.sbt @@ -1,3 +1,4 @@ +name := "scala-native-benchmarks" scalaVersion := "2.11.12" val nativeImage = taskKey[Unit]("Builds a native image of a benchmark.") diff --git a/confs/scala-native-0.3.7/build.sbt b/confs/scala-native-0.3.7/build.sbt index b4a5690..702aa9d 100644 --- a/confs/scala-native-0.3.7/build.sbt +++ b/confs/scala-native-0.3.7/build.sbt @@ -1,3 +1,4 @@ +name := "scala-native-benchmarks" scalaVersion := "2.11.12" enablePlugins(ScalaNativePlugin) nativeLinkStubs := true diff --git a/confs/scala-native-0.3.7/run b/confs/scala-native-0.3.7/run index 0ea88ec..ae89e34 100644 --- a/confs/scala-native-0.3.7/run +++ b/confs/scala-native-0.3.7/run @@ -1 +1 @@ -target/scala-2.11/benchs-out +target/scala-2.11/scala-native-benchmarks-out diff --git a/confs/scala-native-0.3.8/build.sbt b/confs/scala-native-0.3.8/build.sbt index b4a5690..702aa9d 100644 --- a/confs/scala-native-0.3.8/build.sbt +++ b/confs/scala-native-0.3.8/build.sbt @@ -1,3 +1,4 @@ +name := "scala-native-benchmarks" scalaVersion := "2.11.12" enablePlugins(ScalaNativePlugin) nativeLinkStubs := true diff --git a/confs/scala-native-0.3.9/build.sbt b/confs/scala-native-0.3.9/build.sbt index ae87f31..441c07f 100644 --- a/confs/scala-native-0.3.9/build.sbt +++ b/confs/scala-native-0.3.9/build.sbt @@ -1,3 +1,4 @@ +name := "scala-native-benchmarks" scalaVersion := "2.11.12" enablePlugins(ScalaNativePlugin) nativeLinkStubs := true From 8caf9d0eeb2ab478fe0f63d325d383d487064898 Mon Sep 17 00:00:00 2001 From: Valdis Date: Sat, 18 May 2019 10:09:36 +0200 Subject: [PATCH 3/4] 0.3.9 release did not have nativeLTO --- confs/scala-native-0.3.9/build.sbt | 1 - 1 file changed, 1 deletion(-) diff --git a/confs/scala-native-0.3.9/build.sbt b/confs/scala-native-0.3.9/build.sbt index 441c07f..702aa9d 100644 --- a/confs/scala-native-0.3.9/build.sbt +++ b/confs/scala-native-0.3.9/build.sbt @@ -4,4 +4,3 @@ enablePlugins(ScalaNativePlugin) nativeLinkStubs := true nativeGC := "immix" nativeMode := "release" -nativeLTO := "thin" From 23ba3d4f46e9cee46e34285c2cc890abf4398677 Mon Sep 17 00:00:00 2001 From: Valdis Date: Sat, 18 May 2019 10:05:11 +0200 Subject: [PATCH 4/4] Ignore build.sbt and plugins.sbt files because they keep getting changed by the runner. --- .gitignore | 4 +++- project/build.sbt | 1 - 2 files changed, 3 insertions(+), 2 deletions(-) delete mode 100644 project/build.sbt diff --git a/.gitignore b/.gitignore index c37ddf5..ba51019 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,6 @@ bin/.coursier bin/.scalafmt* results/ *.iprof -.idea \ No newline at end of file +.idea +build.sbt +project/plugins.sbt \ No newline at end of file diff --git a/project/build.sbt b/project/build.sbt deleted file mode 100644 index 8b13789..0000000 --- a/project/build.sbt +++ /dev/null @@ -1 +0,0 @@ -