소스 검색

Remove TODO SIMD (#50)

justheuristic 5 년 전
부모
커밋
b26c1525b9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hivemind/dht/routing.py

+ 1 - 1
hivemind/dht/routing.py

@@ -245,7 +245,7 @@ class DHTID(int):
         :return: a number or a list of numbers whose binary representations equal bitwise xor between DHTIDs.
         """
         if isinstance(other, Iterable):
-            return list(map(self.xor_distance, other))  # TODO make some SIMD
+            return list(map(self.xor_distance, other))
         return int(self) ^ int(other)
 
     @classmethod