Skip to content

Commit

Permalink
bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ejchung0406 committed Jun 12, 2023
1 parent b813ded commit 4310dcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/process_manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1241,7 +1241,7 @@ void process_manager_c::sim_thread_schedule(bool initial) {
core_c *core = m_simBase->m_core_pointers[core_id];

std::string core_type = core->get_core_type();
if (core_type != "ptx" || core_type != "nvbit") continue;
if (core_type != "ptx" && core_type != "nvbit") continue;

// get currently fetching id
int prev_fetching_block_id = core->m_fetching_block_id;
Expand Down

0 comments on commit 4310dcb

Please sign in to comment.