Skip to content

Commit

Permalink
Fix exploratory tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdunkerley committed Jan 20, 2025
1 parent 502291e commit 2c79fbf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions test/Exploratory_Benchmarks/src/Table/Column_Bi_Map.enso
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import project.Table.Helpers

polyglot java import org.enso.exploratory_benchmark_helpers.MapHelpers
polyglot java import org.enso.table.data.column.builder.Builder
polyglot java import org.enso.table.data.column.storage.type.IntegerType;
polyglot java import org.enso.table.data.column.storage.type.TextType;
polyglot java import org.enso.table.data.column.storage.type.IntegerType
polyglot java import org.enso.table.data.column.storage.type.TextType

# Adding two String columns
type Boxed_Bi_Map_Test
Expand Down
2 changes: 1 addition & 1 deletion test/Exploratory_Benchmarks/src/Table/Column_Map.enso
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import project.Table.Helpers

polyglot java import org.enso.exploratory_benchmark_helpers.MapHelpers
polyglot java import org.enso.table.data.column.builder.Builder
polyglot java import org.enso.table.data.column.storage.type.IntegerType;
polyglot java import org.enso.table.data.column.storage.type.IntegerType

## This tests an operation on a boxed value (e.g. ends_with on a String).
It is the basic benchmark for comparing the performance between the vectorized Java op and approaches relying on Enso.
Expand Down
4 changes: 2 additions & 2 deletions test/Exploratory_Benchmarks/src/Table/Enso_Callback.enso
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import project.Table.Helpers

polyglot java import org.enso.exploratory_benchmark_helpers.MapHelpers
polyglot java import org.enso.table.data.column.builder.Builder
polyglot java import org.enso.table.data.column.storage.type.IntegerType;
polyglot java import org.enso.table.data.column.storage.type.TextType;
polyglot java import org.enso.table.data.column.storage.type.IntegerType
polyglot java import org.enso.table.data.column.storage.type.TextType
polyglot java import org.enso.table.data.table.Column as Java_Column

## This tests an operation that executes an Enso function on each element of a column.
Expand Down

0 comments on commit 2c79fbf

Please sign in to comment.