Source code for tests.system.google.cloud.ray.resources.heavy

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.
from __future__ import annotations

import time

import ray

# Initialize Ray
ray.init()


# Define a computationally intensive task
@ray.remote(num_cpus=1)
[docs] def heavy_task(x): """ Simulates a heavy workload by performing a CPU-bound operation. This example calculates the sum of squares for a range of numbers. """ total = 0 for i in range(x): total += i * i time.sleep(1) # Simulate some work duration return total
# Generate a large number of tasks
[docs] num_tasks = 1000
[docs] results = []
for _i in range(num_tasks): results.append(heavy_task.remote(1000000)) # Retrieve results (this will trigger autoscaling if needed)
[docs] outputs = ray.get(results)
# Print the sum of the results (optional) print(f"Sum of results: {sum(outputs)}") # Terminate the process ray.shutdown()

Was this entry helpful?