Skip to content
Snippets Groups Projects
Commit 050974d8 authored by Martin Lange's avatar Martin Lange
Browse files

check for shared memory by magnitude directly rather than using the tool function

parent 7fac418f
No related branches found
No related tags found
1 merge request!231Optimize shared memory check
Pipeline #133952 passed with stages
in 6 minutes and 42 seconds
......@@ -151,9 +151,7 @@ class Output(IOutput, Loggable):
xdata = tools.to_xarray(data, self.name, self.info)
if len(self.data) > 0:
d = self.data[-1][1]
if np.may_share_memory(
tools.get_magnitude(d), tools.get_magnitude(xdata)
):
if np.may_share_memory(d.data.magnitude, xdata.data.magnitude):
raise FinamDataError(
"Received data that shares memory with previously received data."
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment