Skip to content

Commit

Permalink
minor style changes addressing review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
elstehle committed Jul 16, 2022
1 parent f4ec994 commit 671ce41
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cpp/src/io/fst/logical_stack.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -441,10 +441,10 @@ void sparse_stack_op_to_top_of_stack(StackSymbolItT d_symbols,
// Dump info on stack operations: (stack level change + symbol) -> (absolute stack level + symbol)
test::print::print_array(num_symbols_in,
stream,
get_stack_level_it(stack_symbols_in),
get_value_it(stack_symbols_in),
get_stack_level_it(d_kv_operations.Current()),
get_value_it(d_kv_operations.Current()));
get_stack_level_iterator(stack_symbols_in),
get_value_iterator(stack_symbols_in),
get_stack_level_iterator(d_kv_operations.Current()),
get_value_iterator(d_kv_operations.Current()));

// Stable radix sort, sorting by stack level of the operations
d_kv_operations_unsigned = cub::DoubleBuffer<StackOpUnsignedT>{
Expand Down

0 comments on commit 671ce41

Please sign in to comment.