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
5682 Aa 16-Apr-2023 10:23:04 PM
5681 Apr 12 MET 12-Apr-2023 09:56:35 AM
5680 MET 12 Apr 12-Apr-2023 09:43:37 AM
5679 online 11-Apr-2023 01:16:47 PM
5678 MS Test 11-Apr-2023 12:59:16 PM
5677 asdf 11-Apr-2023 12:58:53 PM
5676 asdf 11-Apr-2023 12:58:38 PM
5675 asdf 11-Apr-2023 12:58:33 PM
5674 asdf 11-Apr-2023 12:58:27 PM
5673 asdf 11-Apr-2023 12:58:20 PM
5672 asdf 11-Apr-2023 12:58:14 PM
5671 asdf 11-Apr-2023 12:58:07 PM
5670 asdf 11-Apr-2023 12:57:59 PM
5669 asdf 11-Apr-2023 12:57:53 PM
5668 asdf 11-Apr-2023 12:57:45 PM
5667 asdf 11-Apr-2023 12:57:38 PM
5666 asdf 11-Apr-2023 12:57:30 PM
5665 asdf 11-Apr-2023 12:57:22 PM
5664 asdf 11-Apr-2023 12:57:14 PM
5663 asdf 11-Apr-2023 12:57:07 PM
5662 xxxx 11-Apr-2023 09:30:22 AM
5661 xxxx 11-Apr-2023 09:16:52 AM
5660 xxxx 11-Apr-2023 09:10:30 AM
5659 Geopharmarx 07-Apr-2023 10:10:22 PM
5658 ttt2 04-Apr-2023 08:53:46 AM
5657 ttt 04-Apr-2023 08:41:57 AM
5656 02-Apr-2023 09:20:42 AM
5655 code 01-Apr-2023 01:04:03 PM
5654 Animation09 31-Mar-2023 02:40:17 PM
5653 fty 29-Mar-2023 02:12:37 AM

[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