This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
start = time.time() | |
for pv_name in pv_list: | |
pv = PV(pv_name) | |
if pv.wait_for_connection(timeout=1.0): | |
result[pv_name] = pv.get(use_monitor=False) | |
else: | |
result[pv_name] = 'not connected' | |
duration = time.time() - start | |
print int(round(duration * 1000)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
start = time.time() | |
for pv_name in pv_list: | |
ch = ca.create_channel(pv_name, connect=False, auto_cb=False) | |
result[pv_name] = [ch, None, None] | |
for pv_name, data in result.items(): | |
result[pv_name][1] = ca.connect_channel(data[0], timeout=1.0) | |
ca.poll() | |
for pv_name, data in result.items(): | |
if result[pv_name][1]: | |
ca.get(data[0], wait=False) | |
ca.poll() | |
for pv_name, data in result.items(): | |
if result[pv_name][1]: | |
val = ca.get_complete(data[0]) | |
result[pv_name][2] = val | |
else: | |
result[pv_name][2] = 'not connected' | |
duration = time.time() - start | |
print int(round(duration * 1000)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ... | |
from multiprocessing import Process, Manager | |
def get(d, pv_name, size, start, pid): | |
pv = PV(pv_name) | |
if pv.wait_for_connection(timeout=1.0): | |
d[pv_name] = pv.get(use_monitor=False) | |
else: | |
d[pv_name] = 'not connected' | |
if len(d) == size: | |
print int(round((time.time() - start) * 1000)) | |
os.kill(pid, signal.SIGTERM) | |
# ... | |
size = len(pv_list) | |
manager = Manager() | |
d = manager.dict() | |
start = time.time() | |
pid = os.getpid() | |
for pv_name in pv_list: | |
p = Process(target=get, args=(d, pv_name, size, start, pid)) | |
p.start() | |
time.sleep(30) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def get(d, pv_name, size, start, pid): | |
ch = ca.create_channel(pv_name, connect=False, auto_cb=False) | |
if ca.connect_channel(ch, timeout=1.0): | |
d[pv_name] = ca.get(ch, wait=True) | |
else: | |
d[pv_name] = 'not connected' | |
if len(d) == size: | |
print int(round((time.time() - start) * 1000)) | |
os.kill(pid, signal.SIGTERM) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
start = Date.now(); | |
size = pv_list.length; | |
pv_list.forEach(function(pv) { | |
ca.exec('caget', pv, function(err, result) { | |
complete = complete + 1; | |
if (err) { | |
results[pv] = { | |
name: pv, | |
value: 'unavailable' | |
}; | |
} else { | |
results[pv] = ca.parseCaget(result); | |
} | |
if (complete == size) { | |
console.log('the snapshot took ' + (Date.now() - start) + ' milliseconds.'); | |
} | |
}); | |
}); |
Interesting comparison between the various python implementations and node. Recently I have been using the Twisted framework as part of the Control System Web project, so I was curious how pyepics+twisted would compare to other python implementations and node. I wrote an implementation of the snapshot program using these tools and compared it with the other implementations. The results are somewhat surprising as they are substantially better than the other python implementations, and slightly better then node. Of course the node and twisted implementations are much different, one is using the 'caget' application so must fork a new OS process for each PV and the other is using a native library loaded into the python application. It must also be noted that the twisted implementation could be considered incomplete as the PV connections are never explicitly disconnected before the application exits. If the 'pv.disconnect()' calls are naively added (see comments in source code) the running time nearly doubles! So some extra care would be needed to disconnect all PVs properly in a concurrent manner.
ReplyDelete