Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run sample benchmarks on CI #622

Merged
merged 4 commits into from
Jul 26, 2023
Merged

Run sample benchmarks on CI #622

merged 4 commits into from
Jul 26, 2023

Conversation

keynmol
Copy link
Contributor

@keynmol keynmol commented Jul 26, 2023

Additionally, fix benchmarks which used to fail immediately.

This is the full set that was supposed to be running:

[info] Benchmark                                 (lib)  Mode  Cnt     Score      Error  Units
[info] CompileBench.compile                  bytebuddy    ss    5  1595.107 ±  180.417  ms/op
[info] CompileBench.compile                      guava    ss    5  1916.022 ±  216.242  ms/op
[info] CompileBench.compileSemanticdb        bytebuddy    ss    5  2105.174 ±  585.412  ms/op
[info] CompileBench.compileSemanticdb            guava    ss    5  2583.266 ±  196.088  ms/op
[info] ScipSemanticdbBench.json                    N/A    ss    5  1870.098 ±  468.124  ms/op
[info] ScipSemanticdbBench.jsonParallel            N/A    ss    5  2918.148 ± 1331.300  ms/op
[info] ScipSemanticdbBench.protobuf                N/A    ss    5   964.729 ±  339.123  ms/op
[info] ScipSemanticdbBench.protobufParallel        N/A    ss    5   844.251 ±  197.321  ms/op

Test plan

CI is my test plan.

def textDocument: Semanticdb.TextDocument = {
textDocuments.getDocuments(0)
def textDocument: Option[Semanticdb.TextDocument] = {
Option.when(textDocuments.getDocumentsCount() > 0) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was previously crashing, likely terminating the benchmark prematurely.

[info] <failure>
[info] java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0
[info]  at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64)
[info]  at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70)
[info]  at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:248)
[info]  at java.base/java.util.Objects.checkIndex(Objects.java:372)
[info]  at java.base/java.util.ArrayList.get(ArrayList.java:459)
[info]  at java.base/java.util.Collections$UnmodifiableList.get(Collections.java:1310)
[info]  at com.sourcegraph.semanticdb_javac.Semanticdb$TextDocuments.getDocuments(Semanticdb.java:669)
[info]  at tests.CompileResult.textDocument(CompileResult.scala:12)
[info]  at benchmarks.CompileBench.$anonfun$compileSemanticdb$1(CompileBench.scala:65)
[info]  at benchmarks.CompileBench.$anonfun$compileSemanticdb$1$adapted(CompileBench.scala:64)
[info]  at benchmarks.CompileBench$.$anonfun$foreachSource$2(CompileBench.scala:94
[info]  at benchmarks.CompileBench$.$anonfun$foreachSource$2$adapted(CompileBench.scala:82)
[info]  at scala.meta.internal.io.PlatformFileIO$.withJarFileSystem(PlatformFileIO.scala:80)
[info]  at scala.meta.internal.io.FileIO$.withJarFileSystem(FileIO.scala:44)
[info]  at benchmarks.CompileBench$.$anonfun$foreachSource$1(CompileBench.scala:82
[info]  at benchmarks.CompileBench$.$anonfun$foreachSource$1$adapted(CompileBench.scala:80)
[info]  at scala.collection.immutable.List.foreach(List.scala:333)
[info]  at benchmarks.CompileBench$.foreachSource(CompileBench.scala:80)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought I'd check which dependency causes this:

[info] ArraySeq(edu/umd/cs/findbugs/annotations/When.java, edu/umd/cs/findbugs/annotations/UnknownNullness.java, edu/umd/cs/findbugs/annotations/SuppressWarnings.java, edu/umd/cs/findbugs/annotations/SuppressFBWarnings.java, edu/umd/cs/findbugs/annotations/ReturnValuesAreNonnullByDefault.java, edu/umd/cs/findbugs/annotations/Priority.java, edu/umd/cs/findbugs/annotations/PossiblyNull.java, edu/umd/cs/findbugs/annotations/package-info.java, edu/umd/cs/findbugs/annotations/OverrideMustInvoke.java, edu/umd/cs/findbugs/annotations/Nullable.java, edu/umd/cs/findbugs/annotations/NoWarning.java, edu/umd/cs/findbugs/annotations/NonNull.java, edu/umd/cs/findbugs/annotations/ExpectWarning.java, edu/umd/cs/findbugs/annotations/DischargesObligation.java, edu/umd/cs/findbugs/annotations/DesireWarning.java, edu/umd/cs/findbugs/annotations/DesireNoWarning.java, edu/umd/cs/findbugs/annotations/DefaultAnnotationForParameters.java, edu/umd/cs/findbugs/annotations/DefaultAnnotationForMethods.java, edu/umd/cs/findbugs/annotations/DefaultAnnotationForFields.java, edu/umd/cs/findbugs/annotations/DefaultAnnotation.java, edu/umd/cs/findbugs/annotations/CreatesObligation.java, edu/umd/cs/findbugs/annotations/Confidence.java, edu/umd/cs/findbugs/annotations/CleanupObligation.java, edu/umd/cs/findbugs/annotations/CheckReturnValue.java, edu/umd/cs/findbugs/annotations/CheckForNull.java) returned an empty textDocument

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is quite strange, because when I index it manually it works:

sbt> cli/run index-dependency --dependency com.google.code.findbugs:jsr305:3.0.2
CleanShot 2023-07-26 at 14 34 52@2x

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh wait, is this a different dependency...

@keynmol keynmol marked this pull request as ready for review July 26, 2023 13:17
@keynmol keynmol requested a review from olafurpg July 26, 2023 13:21
Copy link
Member

@olafurpg olafurpg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a great improvement. It probably makes sense to remove the LSIF-related benchmarks since I don't expect we will need to revisit those code paths in the future.

@keynmol keynmol merged commit 5efa0ff into main Jul 26, 2023
@keynmol keynmol deleted the benchmark-tests branch July 26, 2023 14:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants