-
Notifications
You must be signed in to change notification settings - Fork 236
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
Speed up build: unnecessary invalidation in the incremental recompile mode [databricks] #9698
Merged
gerashegalov
merged 30 commits into
NVIDIA:branch-23.12
from
gerashegalov:speedupBuildInfo
Nov 17, 2023
Merged
Speed up build: unnecessary invalidation in the incremental recompile mode [databricks] #9698
gerashegalov
merged 30 commits into
NVIDIA:branch-23.12
from
gerashegalov:speedupBuildInfo
Nov 17, 2023
Conversation
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
Signed-off-by: Gera Shegalov <[email protected]>
Signed-off-by: Gera Shegalov <[email protected]>
Signed-off-by: Gera Shegalov <[email protected]>
Signed-off-by: Gera Shegalov <[email protected]>
Signed-off-by: Gera Shegalov <[email protected]>
Signed-off-by: Gera Shegalov <[email protected]>
Signed-off-by: Gera Shegalov <[email protected]>
Signed-off-by: Gera Shegalov <[email protected]>
Signed-off-by: Gera Shegalov <[email protected]>
Signed-off-by: Gera Shegalov <[email protected]>
Signed-off-by: Gera Shegalov <[email protected]>
Signed-off-by: Gera Shegalov <[email protected]>
Signed-off-by: Gera Shegalov <[email protected]>
Follow up to NVIDIA#9615 Signed-off-by: Gera Shegalov <[email protected]>
Signed-off-by: Gera Shegalov <[email protected]>
gerashegalov
requested review from
jlowe,
revans2,
tgravescs,
GaryShen2008,
NvTimLiu and
pxLi
as code owners
November 14, 2023 11:06
Signed-off-by: Gera Shegalov <[email protected]>
build |
build |
Signed-off-by: Gera Shegalov <[email protected]>
build |
Signed-off-by: Gera Shegalov <[email protected]>
build |
2 similar comments
build |
build |
jlowe
reviewed
Nov 15, 2023
Signed-off-by: Gera Shegalov <[email protected]>
jlowe
reviewed
Nov 15, 2023
Co-authored-by: Jason Lowe <[email protected]>
Signed-off-by: Gera Shegalov <[email protected]>
jlowe
previously approved these changes
Nov 15, 2023
build |
1 similar comment
build |
- binary-dedupe should not look outside paralle-world directory - when unpack is skipped we should restore jni from a staged dir Signed-off-by: Gera Shegalov <[email protected]>
build |
1 similar comment
build |
gerashegalov
commented
Nov 16, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@andygrove you have previously asked about different ScalaTest-related commands
jlowe
approved these changes
Nov 16, 2023
NVnavkumar
pushed a commit
to NVnavkumar/spark-rapids
that referenced
this pull request
Nov 18, 2023
…IDIA#9770) Addendum to NVIDIA#9698 Add `-f scala2.13` to the ScalaTest README --------- Signed-off-by: Gera Shegalov <[email protected]>
This was referenced Nov 21, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #9691
This PR aims at reducing unnecessary IncrementalCompiler output invalidations due to jar updates
skip
bymaven.scaladoc.skip
in docs and scripts as a follow up to Bloop updates - require JDK11 in buildall + docs, build bloop for all targets. #9615Repeated executions
01:10 min
13.004 s
mvn package -pl tests -am -Dbuildver=330 \
-Dmaven.scaladoc.skip -DskipTests
01:23 min
25.801 s
mvn package -pl tests -am -Dbuildver=330 \
-Dmaven.scaladoc.skip -Dsuffixes=rapids.CastOpSuite \
-Dtests='Cast from string to timestamp'
01:30 min
30.00 s
mvn package -Dbuildver=330 \
-Ddist.jar.compress=false -DskipTests -Dmaven.scaladoc.skip
48.769 s
19.253 s
mvn -T1C package -pl dist -am -Dbuildver=330 \
-Ddist.jar.compress=false -DskipTests \
-Drapids.jni.unpack.skip=true
Signed-off-by: Gera Shegalov [email protected]