2022-06-23 09:34:59 +00:00
|
|
|
from enum import Enum
|
|
|
|
|
|
|
|
|
|
|
|
class ComputePattern(Enum):
|
|
|
|
TP1D = 0
|
|
|
|
TP2D = 1
|
|
|
|
TP2P5D = 2
|
|
|
|
TP3D = 3
|
|
|
|
|
|
|
|
|
|
|
|
class ComputeSpec(object):
|
|
|
|
"""ComputeSpec
|
|
|
|
The Specification for compuattion pattern
|
2022-08-16 01:21:05 +00:00
|
|
|
|
2022-06-23 09:34:59 +00:00
|
|
|
Args:
|
|
|
|
compute_pattern (ComputePattern): an Enum instance for compute pattern.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, compute_pattern: ComputePattern) -> None:
|
|
|
|
assert isinstance(compute_pattern, ComputePattern)
|
|
|
|
self.compute_pattern = compute_pattern
|
2022-06-24 05:08:54 +00:00
|
|
|
# Make sure output tensors are replicate
|
|
|
|
self.output_replicate = True
|
2022-06-23 09:34:59 +00:00
|
|
|
|
|
|
|
def __repr__(self):
|
2022-07-21 02:53:15 +00:00
|
|
|
return f'Compute pattern: {self.compute_pattern}'
|
|
|
|
|
|
|
|
def set_output_replicate(self, flag: bool = True):
|
|
|
|
self.output_replicate = flag
|