Documentation
ODP 3.3.6.4-1
Release Notes
What is ODP
Installation
Component User guide and Installation Instructions
Upgrade Instructions
Downgrade Instructions
Reference Guide
Security Guide
Troubleshooting Guide
Uninstall ODP
Title
Message
Create new category
What is the title of your new category?
Edit page index title
What is the title of the page index?
Edit category
What is the new title of your category?
Edit link
What is the new title and URL of your link?
Ray with JupyterHub
Summarize Page
Copy Markdown
Open in ChatGPT
Open in Claude
Connect to Cursor
Connect to VS Code
ODP 3.3.6.4-1 introduces Ray, a “framework for scaling AI and Python applications.
Example:
Bash
xxxxxxxxxximport rayimport timeray.init()items = [ "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten" ] def get_item(idx: int): time.sleep(idx / 10.) return idx, items[idx] @ray.remotedef retrieve_task(item): return get_item(item) def print_runtime(data, start_time): print(f"Runtime: {time.time() - start_time:.2f} seconds, data: ") print(*data, sep="\n") start = time.time()data = [get_item(item) for item in range(len(items))]print("Time to do it the synchronous way:")print_runtime(data, start) start = time.time()object_refs = [ retrieve_task.remote(item) for item in range(len(items))]data = ray.get(object_refs)print("Time to do it with ray:")print_runtime(data, start)Which gives the following output:

Type to search, ESC to discard
Type to search, ESC to discard
Type to search, ESC to discard
Last updated on May 14, 2026
Was this page helpful?
Next to read:
Pytorch on Jupyterhubnull
Discard Changes
Do you want to discard your current changes and overwrite with the template?
Archive Synced Block
Message
Create new Template
What is this template's title?
Delete Template
Message