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
5592 . 17-Feb-2023 12:28:00 PM
5591 Test1 Feb17 16-Feb-2023 09:48:33 PM
5590 Nusfi Recipe 16-Feb-2023 05:26:40 PM
5589 . 16-Feb-2023 05:22:59 PM
5588 MET 15-Feb-2023 10:39:58 AM
5587 Test12Feb15 14-Feb-2023 10:35:57 PM
5586 Test11Feb15 14-Feb-2023 10:30:34 PM
5585 Test 8Feb15 14-Feb-2023 10:27:35 PM
5584 Test 3 Feb15 14-Feb-2023 10:24:31 PM
5583 Test 2 Feb15 14-Feb-2023 03:28:53 PM
5582 Test 1 Feb15 14-Feb-2023 03:26:12 PM
5581 asddf 14-Feb-2023 03:25:47 PM
5580 asdf 14-Feb-2023 03:25:40 PM
5579 asdf 14-Feb-2023 03:25:33 PM
5578 asf 14-Feb-2023 03:25:27 PM
5577 asdf 14-Feb-2023 03:25:19 PM
5576 asdf 14-Feb-2023 03:25:13 PM
5575 asdf 14-Feb-2023 03:25:05 PM
5574 asdf 14-Feb-2023 03:24:56 PM
5573 asdf 14-Feb-2023 03:24:50 PM
5572 asdf 14-Feb-2023 03:24:41 PM
5571 asdf 14-Feb-2023 03:24:33 PM
5570 asdf 14-Feb-2023 03:24:23 PM
5569 asdf 14-Feb-2023 03:24:16 PM
5568 asdf 14-Feb-2023 03:24:09 PM
5567 asdf 14-Feb-2023 03:24:01 PM
5566 asf 14-Feb-2023 03:23:52 PM
5565 asdf 14-Feb-2023 03:23:45 PM

[First] [Prev] 11 | 12
 
web counter
web counter


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