Skip to content

Commit

Permalink
[MINOR] Add missing knobs to the config XML template
Browse files Browse the repository at this point in the history
  • Loading branch information
phaniarnab committed Jun 8, 2023
1 parent dadfbbb commit 1fb8c5e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions conf/SystemDS-config.xml.template
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@
<!-- Allocator to use to allocate GPU device memory. Supported values are cuda, unified_memory (default: cuda) -->
<sysds.gpu.memory.allocator>cuda</sysds.gpu.memory.allocator>

<!-- If rule-based operator placement for GPU enabled -->
<sysds.gpu.place.rulebased>false</sysds.gpu.place.rulebased>

<!-- enables disk spilling for lineage cache -->
<sysds.lineage.cachespill>true</sysds.lineage.cachespill>

Expand Down Expand Up @@ -148,4 +151,7 @@
<!-- Asynchronously trigger broadcast (CP intermediate) -->
<sysds.async.broadcast>false</sysds.async.broadcast>

<!-- Compile-time synchronous/asynchronous checkpoint placement -->
<sysds.async.checkpoint>false</sysds.async.checkpoint>

</root>
2 changes: 1 addition & 1 deletion src/main/java/org/apache/sysds/conf/DMLConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public class DMLConfig
/** Asynchronous triggering of Spark OPs and operator placement **/
public static final String ASYNC_SPARK_PREFETCH = "sysds.async.prefetch"; // boolean: enable asynchronous prefetching spark intermediates
public static final String ASYNC_SPARK_BROADCAST = "sysds.async.broadcast"; // boolean: enable asynchronous broadcasting CP intermediates
public static final String ASYNC_SPARK_CHECKPOINT = "sysds.async.checkpoint"; // boolean: enable asynchronous persisting of Spark intermediates
public static final String ASYNC_SPARK_CHECKPOINT = "sysds.async.checkpoint"; // boolean: enable compile-time persisting of Spark intermediates
//internal config
public static final String DEFAULT_SHARED_DIR_PERMISSION = "777"; //for local fs and DFS

Expand Down

0 comments on commit 1fb8c5e

Please sign in to comment.