jdchn
jdchn
> Let me think how to properly handle this cyclic dependency, it might not be a trivial fix. I don't feel confident enough in myself to provide any useful comments...
It may be a little trickier than it seems. It will be tempting to simply treat self-references as normal dependencies, but there should be some caveats: * The self-reference without...
Sure — I ran 8ca2abe in my environment with my test script: ```python import torch import numpy as np import datetime def ops(A, B, n): return torch.add(torch.matrix_power(A, n), torch.matrix_power(B, n))...
The "bytes instead of bits" issue also affects [`edu.nps.moves.dis.IntercomSignalPDU`](../blob/ea75baf186a00a1393787857a017f2668c916f89/src/main/java/edu/nps/moves/dis/IntercomSignalPdu.java#L140) and [`edu.nps.moves.dis7.IntercomSignalPDU`](../blob/ea75baf186a00a1393787857a017f2668c916f89/src/main/java/edu/nps/moves/dis7/IntercomSignalPdu.java#L133) . As well as the C++ versions: - [`dis6/SignalPDU`](https://github.com/open-dis/open-dis-cpp/blob/208b8bb0b5c06a892d899714d20f150be73c9a42/src/dis6/SignalPdu.cpp#L81) - [`dis6/IntercomSignalPDU`](https://github.com/open-dis/open-dis-cpp/blob/208b8bb0b5c06a892d899714d20f150be73c9a42/src/dis6/IntercomSignalPdu.cpp#L108) - [`dis7/IntercomSignalPDU`](https://github.com/open-dis/open-dis-cpp/blob/208b8bb0b5c06a892d899714d20f150be73c9a42/src/dis7/IntercomSignalPdu.cpp#L108)