-
Notifications
You must be signed in to change notification settings - Fork 527
[S#3543] Piece-wise linear compression of column groups first working prototype #2415 #2420
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
base: main
Are you sure you want to change the base?
Changes from all commits
163e4e4
f5df4ea
f6500d1
8f5c844
11415fa
5301f8f
a31116d
d63aae8
9600179
78460b5
f42b766
47256c0
505c0cc
103abd8
31b957d
0faa2f8
698a942
898af68
d8ebc9f
36d3186
a0d08d7
dfe2eee
9e0d18b
abeced4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| #!/bin/bash | ||
| # Standalone-Launcher für SystemDS | ||
|
|
||
| SCRIPT_DIR=$(cd "$(dirname "$0")" && pwd) | ||
| JAR_FILE="$SCRIPT_DIR/../target/systemds-3.4.0-SNAPSHOT.jar" | ||
|
|
||
| if [ ! -f "$JAR_FILE" ]; then | ||
| echo "ERROR: Standalone JAR nicht gefunden: $JAR_FILE" | ||
| exit 1 | ||
| fi | ||
|
|
||
| java -cp "$JAR_FILE" org.apache.sysds.api.DMLScript "$@" |
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It seems like you reformatted the file to revert the tabs -> spaces conversion, which is good. However, there are still many unnecessary changes. I would recommend you revert that file to the original state of this repository and then only add the |
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.
This file should not be part of the PR. You can keep it locally but you should untrack it and not add it to your commits. You could use
git rm --cached bin/systemds-standalone.sh.