annoy

Форк
0
/
threading_test.py 
34 строки · 950.0 Байт
1
# Copyright (c) 2013 Spotify AB
2
#
3
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4
# use this file except in compliance with the License. You may obtain a copy of
5
# the License at
6
#
7
# http://www.apache.org/licenses/LICENSE-2.0
8
#
9
# Unless required by applicable law or agreed to in writing, software
10
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12
# License for the specific language governing permissions and limitations under
13
# the License.
14

15
import multiprocessing.pool
16

17
import numpy
18

19
from annoy import AnnoyIndex
20

21

22
def test_threads():
23
    n, f = 10000, 10
24
    i = AnnoyIndex(f, "euclidean")
25
    for j in range(n):
26
        i.add_item(j, numpy.random.normal(size=f))
27
    i.build(10)
28

29
    pool = multiprocessing.pool.ThreadPool()
30

31
    def query_f(j):
32
        i.get_nns_by_item(1, 1000)
33

34
    pool.map(query_f, range(n))
35

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.