Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit badf2fb

Browse files
committedJul 5, 2023
revert renaming of valuetypes
1 parent 010bdfb commit badf2fb

File tree

109 files changed

+370
-373
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+370
-373
lines changed
 

‎src/main/java/org/apache/sysds/common/Types.java

+3-5
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public boolean isUnknown() {
7676
*/
7777
public enum ValueType {
7878
UINT4, UINT8, // Used for parsing in UINT values from numpy.
79-
FP32, FP64, INT32, INT64, BITSET, BOOLEAN, STRING, UNKNOWN,
79+
FP32, FP64, INT32, INT64, BOOLEAN, STRING, UNKNOWN,
8080
CHARACTER;
8181

8282
public boolean isNumeric() {
@@ -86,7 +86,7 @@ public boolean isUnknown() {
8686
return this == UNKNOWN;
8787
}
8888
public boolean isPseudoNumeric() {
89-
return isNumeric() || this == BITSET || this == CHARACTER;
89+
return isNumeric() || this == BOOLEAN || this == CHARACTER;
9090
}
9191
public String toExternalString() {
9292
switch(this) {
@@ -96,7 +96,6 @@ public String toExternalString() {
9696
case UINT8:
9797
case INT32:
9898
case INT64: return "INT";
99-
case BITSET: return "BITSET";
10099
case BOOLEAN: return "BOOLEAN";
101100
default: return toString();
102101
}
@@ -114,7 +113,6 @@ public static ValueType fromExternalString(String value) {
114113
case "INT32": return INT32;
115114
case "INT64":
116115
case "INT": return INT64;
117-
case "BITSET": return BITSET;
118116
case "BOOLEAN": return BOOLEAN;
119117
case "STRING": return STRING;
120118
case "CHARACTER": return CHARACTER;
@@ -197,7 +195,7 @@ else if(b == UNKNOWN)
197195
default:
198196
return a;
199197
}
200-
case BITSET:
198+
case BOOLEAN:
201199
return b; // always higher type in b;
202200
case UNKNOWN:
203201
default:

‎src/main/java/org/apache/sysds/hops/DataOp.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ protected double computeOutputMemEstimate( long dim1, long dim2, long nnz )
396396
ret = OptimizerUtils.INT_SIZE; break;
397397
case FP64:
398398
ret = OptimizerUtils.DOUBLE_SIZE; break;
399-
case BITSET:
399+
case BOOLEAN:
400400
ret = OptimizerUtils.BOOLEAN_SIZE; break;
401401
case STRING:
402402
// by default, it estimates the size of string[100]

0 commit comments

Comments
 (0)
Please sign in to comment.