Skip to content

Commit

Permalink
Remove bench platform details test code
Browse files Browse the repository at this point in the history
  • Loading branch information
stanbrub committed Sep 25, 2024
1 parent 1fff1be commit 0981871
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/main/java/io/deephaven/benchmark/api/BenchPlatform.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ private void addEngineProps(Map<String, Property> benchApiProps) {
from deephaven import dtypes as dht
from deephaven.column import string_col
def benchApiAddProperty(prop_table, origin, name, value):
t = new_table([string_col('origin', [origin]), string_col('name', [name]), string_col('value', [str(value)])])
prop_table.add(t)
Expand Down Expand Up @@ -183,13 +182,6 @@ def benchApiAddProperty(prop_table, origin, name, value):
Runtime.getRuntime().availableProcessors());
benchApiAddProperty(benchApiProps, benchApiOrigin, "java.max.memory", Runtime.getRuntime().maxMemory());
benchApiAddProperty(benchApiProps, benchApiOrigin, "deephaven.version", deephavenVersion);
# Temporarily write process info log to data directory
import deephaven.perfmon as pm
from deephaven import write_csv
pil = pm.process_info_log()
write_csv(pil, '/data/pil.csv')
""";

ResultTable t = fetchResult(query);
Expand Down

0 comments on commit 0981871

Please sign in to comment.