Copy and Paste  -   An Application to Copy/Paste Text  

 
S.No 5655 Name code Date/Time 01-Apr-2023 01:04:03 PM

Copy text from below

import numpy as np

 

# Define the parameters of the caching problem

N = 100    # number of end user devices

M = 10     # number of edge devices

C = 10000  # cache capacity of each edge device in bytes

F = np.random.randint(1, 10, size=(N, M))  # access frequency matrix

S = np.random.randint(100, 1000, size=N)  # content size array

 

# Define the heuristic algorithm to solve the caching optimization problem

def cache_heuristic(N, M, C, F, S):

    # Calculate the popularity score for each content

    P = np.sum(F, axis=0)

 

    # Sort the contents by their popularity scores

    sorted_contents = np.argsort(P)[::-1]

 

    # Initialize the cache of each edge device to be empty

    cache = np.zeros((M, C))

 

    # For each content in the sorted list, starting from the most popular content

    for j in sorted_contents:

        # Check if content j can fit in any of the edge devices' caches

        added_to_cache = False

        for k in range(M):

            if np.sum(cache[k]) + S[j] <= C:

                cache[k][np.argmax(cache[k] == 0)] = S[j] * F[:,j].sum()

                added_to_cache = True

                break

 

        # If content j cannot fit in any of the edge devices' caches, use LRU replacement policy

        if not added_to_cache:

            least_popular_device = np.argmin(P)

            least_popular_content_index = np.argmin(cache[least_popular_device])

            cache[least_popular_device][least_popular_content_index] = S[j] * F[:,j].sum()

 

    # Return the cached contents on each edge device

    cached_contents = []

    for k in range(M):

        cached_contents.append(np.where(cache[k] > 0)[0])

 

    return cached_contents

 

# Call the heuristic algorithm and print the results

cached_contents = cache_heuristic(N, M, C, F, S)

for k in range(M):

    print(f"Edge device {k}: Cached contents {cached_contents[k]}")

 





comments powered by Disqus
NEW ENTRIES
S.No Name Entry Time/Date
5802 COlor 25-Sep-2023 03:03:06 PM
5801 islamabad 25-Sep-2023 02:56:47 PM
5800 Ikack 25-Sep-2023 02:27:21 PM
5799 Blue Green n 25-Sep-2023 02:01:07 PM
5798 Jask 25-Sep-2023 01:59:04 PM
5797 Blue Green 25-Sep-2023 01:59:02 PM
5796 fire-wood-wa 25-Sep-2023 12:49:39 PM
5795 6001 25-Sep-2023 11:54:34 AM
5794 23-Sep-2023 08:28:04 PM
5793 Child Hot 22-Sep-2023 11:53:03 AM
5792 dfd 22-Sep-2023 10:42:45 AM
5791 Codeeee 22-Sep-2023 09:44:28 AM
5790 HEC 22-Sep-2023 09:41:20 AM
5789 llllllllll 22-Sep-2023 09:20:11 AM
5788 Man 22-Sep-2023 08:58:04 AM
5787 ssss 22-Sep-2023 08:55:24 AM
5786 2 21-Sep-2023 10:40:17 AM
5785 fire wood 21-Sep-2023 10:34:52 AM
5784 calculator 21-Sep-2023 10:09:45 AM
5783 t1 21-Sep-2023 10:02:23 AM
5782 test 21-Sep-2023 09:39:22 AM
5781 design_new 21-Sep-2023 09:09:57 AM
5780 calc_design 21-Sep-2023 08:59:28 AM
5779 stepsis 19-Sep-2023 05:53:02 PM
5778 good 19-Sep-2023 05:51:44 PM
5777 Button 18-Sep-2023 02:31:47 PM
5776 Step1 18-Sep-2023 01:53:15 PM
5775 Hello 18-Sep-2023 01:50:17 PM
5774 123 18-Sep-2023 01:45:52 PM
5773 bijlee 18-Sep-2023 01:41:40 PM

[First] [Prev] 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 [Next] [Last]
 
web counter
web counter


To report any error messages or bugs, or other issues, please send email at: info@pakproject.com