From 34f045c9e8422e0ec72d4933e1640a976a722301 Mon Sep 17 00:00:00 2001 From: Neal Erickson Date: Wed, 27 Sep 2023 17:14:39 -0600 Subject: [PATCH] rename of method in sharder --- pytket/phir/sharding/sharder.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pytket/phir/sharding/sharder.py b/pytket/phir/sharding/sharder.py index 7f5ab54..4371093 100644 --- a/pytket/phir/sharding/sharder.py +++ b/pytket/phir/sharding/sharder.py @@ -51,8 +51,8 @@ def _process_command(self, command: Command) -> None: msg = f"OpType {command.op.type} not supported!" raise NotImplementedError(msg) - if self.is_op_schedulable(command.op): - print(f"Scheduling command: {command}") + if self.should_op_create_shard(command.op): + print(f"Building shard for command: {command}") self._build_shard(command) else: self._add_pending_command(command) @@ -79,11 +79,10 @@ def _add_pending_command(self, command: Command) -> None: self._pending_commands[command.args[0]].append(command) @staticmethod - def is_op_schedulable(op: Op) -> bool: + def should_op_create_shard(op: Op) -> bool: """ - Returns `True` if the operation is one that should be scheduled, that is, - that will have a shard created for it. This includes non-gate operations - like measure/reset as well as 2-qubit gates. + Returns `True` if the operation is one that should result in shard creation. + This includes non-gate operations like measure/reset as well as 2-qubit gates. """ # TODO: This is almost certainly inadequate right now return (