2021-01-20 07:19:03 +00:00
|
|
|
import numpy as np
|
|
|
|
|
2021-04-15 22:51:21 +00:00
|
|
|
import pyqtgraph as pg
|
2021-01-20 07:19:03 +00:00
|
|
|
from pyqtgraph.functions import makeARGB
|
|
|
|
|
2021-04-15 22:51:21 +00:00
|
|
|
try:
|
|
|
|
import cupy as cp
|
2021-01-20 07:19:03 +00:00
|
|
|
|
2021-04-15 22:51:21 +00:00
|
|
|
pg.setConfigOption("useCupy", True)
|
|
|
|
except ImportError:
|
|
|
|
cp = None
|
|
|
|
|
|
|
|
|
|
|
|
class _TimeSuite(object):
|
2021-01-20 07:19:03 +00:00
|
|
|
def __init__(self):
|
2021-04-15 22:51:21 +00:00
|
|
|
super(_TimeSuite, self).__init__()
|
2021-01-20 07:19:03 +00:00
|
|
|
self.float_data = None
|
|
|
|
self.uint8_data = None
|
|
|
|
self.uint8_lut = None
|
|
|
|
self.uint16_data = None
|
|
|
|
self.uint16_lut = None
|
2021-04-15 22:51:21 +00:00
|
|
|
self.output = None
|
|
|
|
self.cupy_output = None
|
2021-01-20 07:19:03 +00:00
|
|
|
|
|
|
|
def setup(self):
|
2021-04-15 22:51:21 +00:00
|
|
|
size = (self.size, self.size)
|
|
|
|
self.float_data, self.uint16_data, self.uint8_data, self.uint16_lut, self.uint8_lut = self._create_data(
|
|
|
|
size, np
|
|
|
|
)
|
|
|
|
self.output = np.zeros(size + (4,), dtype=np.ubyte)
|
|
|
|
makeARGB(self.uint16_data["data"]) # prime the cpu
|
|
|
|
if cp:
|
|
|
|
self.cupy_output = cp.zeros(size + (4,), dtype=cp.ubyte)
|
|
|
|
makeARGB(cp.asarray(self.uint16_data["data"])) # prime the gpu
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _create_data(size, xp):
|
|
|
|
float_data = {
|
|
|
|
"data": xp.random.normal(size=size),
|
|
|
|
"levels": [-4.0, 4.0],
|
2021-01-20 07:19:03 +00:00
|
|
|
}
|
2021-04-15 22:51:21 +00:00
|
|
|
uint16_data = {
|
|
|
|
"data": xp.random.randint(100, 4500, size=size).astype("uint16"),
|
|
|
|
"levels": [250, 3000],
|
2021-01-20 07:19:03 +00:00
|
|
|
}
|
2021-04-15 22:51:21 +00:00
|
|
|
uint8_data = {
|
|
|
|
"data": xp.random.randint(0, 255, size=size).astype("ubyte"),
|
|
|
|
"levels": [20, 220],
|
2021-01-20 07:19:03 +00:00
|
|
|
}
|
2021-04-15 22:51:21 +00:00
|
|
|
c_map = xp.array([[-500.0, 255.0], [-255.0, 255.0], [0.0, 500.0]])
|
|
|
|
uint8_lut = xp.zeros((256, 4), dtype="ubyte")
|
2021-01-20 07:19:03 +00:00
|
|
|
for i in range(3):
|
2021-04-15 22:51:21 +00:00
|
|
|
uint8_lut[:, i] = xp.clip(xp.linspace(c_map[i][0], c_map[i][1], 256), 0, 255)
|
|
|
|
uint8_lut[:, 3] = 255
|
|
|
|
uint16_lut = xp.zeros((2 ** 16, 4), dtype="ubyte")
|
2021-01-20 07:19:03 +00:00
|
|
|
for i in range(3):
|
2021-04-15 22:51:21 +00:00
|
|
|
uint16_lut[:, i] = xp.clip(xp.linspace(c_map[i][0], c_map[i][1], 2 ** 16), 0, 255)
|
|
|
|
uint16_lut[:, 3] = 255
|
|
|
|
return float_data, uint16_data, uint8_data, uint16_lut, uint8_lut
|
2021-01-20 07:19:03 +00:00
|
|
|
|
|
|
|
|
2021-04-15 22:51:21 +00:00
|
|
|
def make_test(dtype, use_cupy, use_levels, lut_name, func_name):
|
2021-01-20 07:19:03 +00:00
|
|
|
def time_test(self):
|
2021-04-15 22:51:21 +00:00
|
|
|
data = getattr(self, dtype + "_data")
|
|
|
|
levels = data["levels"] if use_levels else None
|
|
|
|
lut = getattr(self, lut_name + "_lut", None) if lut_name is not None else None
|
|
|
|
for _ in range(10):
|
|
|
|
img_data = data["data"]
|
|
|
|
output = self.output
|
|
|
|
if use_cupy:
|
|
|
|
img_data = cp.asarray(img_data)
|
|
|
|
output = self.cupy_output
|
|
|
|
makeARGB(
|
|
|
|
img_data, lut=lut, levels=levels, output=output,
|
|
|
|
)
|
|
|
|
if use_cupy:
|
|
|
|
output.get(out=self.output)
|
2021-01-20 07:19:03 +00:00
|
|
|
|
|
|
|
time_test.__name__ = func_name
|
|
|
|
return time_test
|
|
|
|
|
|
|
|
|
2021-04-15 22:51:21 +00:00
|
|
|
for cupy in [True, False]:
|
|
|
|
if cupy and cp is None:
|
|
|
|
continue
|
|
|
|
for dtype in ["float", "uint16", "uint8"]:
|
|
|
|
for levels in [True, False]:
|
|
|
|
if dtype == "float" and not levels:
|
|
|
|
continue
|
|
|
|
for lutname in [None, "uint8", "uint16"]:
|
|
|
|
name = (
|
|
|
|
f'time_10x_makeARGB_{"cupy" if cupy else ""}{dtype}_{"" if levels else "no"}levels_{lutname or "no"}lut'
|
|
|
|
)
|
|
|
|
setattr(_TimeSuite, name, make_test(dtype, cupy, levels, lutname, name))
|
|
|
|
|
|
|
|
|
|
|
|
class Time0256Suite(_TimeSuite):
|
|
|
|
def __init__(self):
|
|
|
|
self.size = 256
|
|
|
|
super(Time0256Suite, self).__init__()
|
|
|
|
|
|
|
|
|
|
|
|
class Time0512Suite(_TimeSuite):
|
|
|
|
def __init__(self):
|
|
|
|
self.size = 512
|
|
|
|
super(Time0512Suite, self).__init__()
|
2021-01-20 07:19:03 +00:00
|
|
|
|
|
|
|
|
2021-04-15 22:51:21 +00:00
|
|
|
class Time1024Suite(_TimeSuite):
|
|
|
|
def __init__(self):
|
|
|
|
self.size = 1024
|
|
|
|
super(Time1024Suite, self).__init__()
|
|
|
|
|
|
|
|
|
|
|
|
class Time2048Suite(_TimeSuite):
|
|
|
|
def __init__(self):
|
|
|
|
self.size = 2048
|
|
|
|
super(Time2048Suite, self).__init__()
|
|
|
|
|
|
|
|
|
|
|
|
class Time3072Suite(_TimeSuite):
|
|
|
|
def __init__(self):
|
|
|
|
self.size = 3072
|
|
|
|
super(Time3072Suite, self).__init__()
|
|
|
|
|
|
|
|
|
|
|
|
class Time4096Suite(_TimeSuite):
|
|
|
|
def __init__(self):
|
|
|
|
self.size = 4096
|
|
|
|
super(Time4096Suite, self).__init__()
|