diff --git a/.github/workflows/large-scale-benchmark.yml b/.github/workflows/large-scale-benchmark.yml index f176cd95..92f75ab8 100644 --- a/.github/workflows/large-scale-benchmark.yml +++ b/.github/workflows/large-scale-benchmark.yml @@ -20,4 +20,4 @@ jobs: - name: Assembly run: sbt assembly - name: Execution - run: export VERSION=evaluation-1-26-23 && java -Xss30M -Xmx12G -jar target/scala-2.12/gvc0-assembly-0.1.0-SNAPSHOT.jar --config=./data/config/nuc.xml --execute --nickname=${{ runner.name }} --db-url=${{ secrets.DB_URL }} --db-user=${{ secrets.DB_USER }} --db-pass=${{ secrets.DB_PASSWORD }} --version="$VERSION" \ No newline at end of file + run: export VERSION=evaluation-08-01-23 && java -Xss30M -Xmx12G -jar target/scala-2.12/gvc0-assembly-0.1.0-SNAPSHOT.jar --config=./data/config/nuc.xml --execute --nickname=${{ runner.name }} --db-url=${{ secrets.DB_URL }} --db-user=${{ secrets.DB_USER }} --db-pass=${{ secrets.DB_PASSWORD }} --version="$VERSION" \ No newline at end of file diff --git a/data/config/nuc.xml b/data/config/nuc.xml index cff05410..665ecd6d 100644 --- a/data/config/nuc.xml +++ b/data/config/nuc.xml @@ -3,20 +3,24 @@ i5-4250U Intel NUC i5-4250U ./src/test/resources/quant-study/ - evaluation-1-26-23 + evaluation-08-01-23 16

- avlja,bst,composite,list + avlja,bst,list,minprique,stack-list - 32 + 8,16,32 + +

+

+ composite + + 4,8,16

100
- ./profiling-results ./errored - diff --git a/src/test/scala/permutation/PermutationSpec.scala b/src/test/scala/permutation/PermutationSpec.scala index c7cae643..c0eb84ba 100644 --- a/src/test/scala/permutation/PermutationSpec.scala +++ b/src/test/scala/permutation/PermutationSpec.scala @@ -8,6 +8,7 @@ import gvc.transformer.IR.{Method, Predicate} import org.scalatest.Outcome import org.scalatest.funsuite.FixtureAnyFunSuite +import java.io.{File, FileWriter} import java.nio.file.Files import scala.collection.mutable @@ -150,9 +151,7 @@ class PermutationSpec extends FixtureAnyFunSuite { for (labelIndex <- sampleToPermute.indices) { labelPermutation.addLabel(sampleToPermute(labelIndex)) } - val top = selector.visit(labelPermutation) - val topPrinted = IRPrinter.print(top, includeSpecs = true) assert(topPrinted.diff(baseline).isEmpty) }