identity-resolution/notebooks/identity-graph/nepytune/benchmarks/drop_graph.py [109:121]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if count > 0:
        fetch_size = MAX_FETCH_SIZE
        num_threads = min(math.ceil(count/fetch_size),MAX_FETCHERS)
        bracket_size = math.ceil(count/num_threads)
        print("Will use", num_threads, "threads.")
        print("Each thread will queue", bracket_size)
        print("Queueing  IDs")

        start_offset = 0

        fetchers = [None] * num_threads

        for i in range(num_threads):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



identity-resolution/notebooks/identity-graph/nepytune/benchmarks/drop_graph.py [139:151]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if count > 0:
        fetch_size = MAX_FETCH_SIZE
        num_threads = min(math.ceil(count/fetch_size),MAX_FETCHERS)
        bracket_size = math.ceil(count/num_threads)
        print("Will use", num_threads, "threads.")
        print("Each thread will queue", bracket_size)
        print("Queueing  IDs")

        start_offset = 0

        fetchers = [None] * num_threads

        for i in range(num_threads):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



