Skip to content

Commit

Permalink
Fix variable name in metal
Browse files Browse the repository at this point in the history
  • Loading branch information
strongoier committed Jul 20, 2021
1 parent 644ff0e commit 9b23c6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions taichi/backends/metal/kernel_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -816,9 +816,9 @@ class KernelManager::Impl {
const auto &ext = sn->extractors[j];
rtm_ext->extractors[j].num_bits = ext.num_bits;
rtm_ext->extractors[j].acc_offset = ext.acc_offset;
rtm_ext->extractors[j].num_elements = ext.num_elements;
TI_DEBUG(" [{}] num_bits={} acc_offset={} num_elements={}", j,
ext.num_bits, ext.acc_offset, ext.num_elements);
rtm_ext->extractors[j].num_elements_from_root = ext.num_elements_from_root;
TI_DEBUG(" [{}] num_bits={} acc_offset={} num_elements_from_root={}", j,
ext.num_bits, ext.acc_offset, ext.num_elements_from_root);
}
TI_DEBUG("");
}
Expand Down

0 comments on commit 9b23c6b

Please sign in to comment.