Skip to main content

No project description provided

Project description

Ravop

Ravop is one of the crucial build blocks of Ravenverse. It is a library for requesters to create and interact with ops, perform mathematical calculations, and write algorithms.

Installation

pip install ravop

Usage

This section covers how a requester can create a simple graph and include Ops for adding 2 Tensors using Ravop module.

Note: The complete scripts of the functionalities demonstrated in this document are available in the Ravop Repository in the examples folders.

Setting Environment Variables

Create a .env file and add the following environment variables:

RAVENVERSE_URL=http://0.0.0.0:9999
RAVENVERSE_FTP_HOST=0.0.0.0

Load environment variables at the beginning of your code using:

from dotenv import load_dotenv
load_dotenv()

Authentication and Graph Definition

The Requester must connect to the Ravenverse using a unique token that they can generate by logging in on Raven's Website using their MetaMask wallet credentials.

import ravop as R
R.initialize('<TOKEN>')

Defining a Graph

In the Ravenverse, each script executed by a requester is treated as a collection of Ravop Operations called Graph.

Note: In the current release, the requester can execute only 1 graph with their unique token. Therefore, to clear any previous/existing graphs, the requester must use R.flush() method.

The next step involves the creation of a Graph...

R.flush()

R.Graph(name='test', algorithm='addition', approach='distributed')

Note: name and algorithm parameters can be set to any string. However, the approach needs to be set to either "distributed" or "federated".

Creating Math Operations (Ops)

a = R.t([1, 2, 3])
b = R.t([4, 5, 6])
c = a + b

Making Ops Persist

Persisting Ops are a special category of Ops that stay in the ravenverse once the graph gets executed. The requester must explicitly mention which ops they want to save in their code. It is a good idea to write the code such that persisting ops contain the relevant results (in this case, variable - c).

Note: Make sure that the name parameter for each persisting Op is unique within a graph so that later it can be retrieved.

c.persist_op(name='c_output')

Activate the Graph

Once all Ops of the graph have been defined, the requester must activate their graph. This step completes the compilation procedure and makes the graph ready for execution. No more Ops can be added to the graph after this.

R.activate()

This function displays the cost of the graph and the maximum number of allowable Providers that can compute this graph.

Execute the Graph

On execution, the graph will be split into smaller subgraphs which will be distributed to the participating compute nodes in the network. The requester can also track the progress of the graph.

R.execute(participants=1)
R.track_progress()

The participants parameter must be a number less than the maximum number of allowable Providers (displayed after activation). This will be the number of Providers allowed to participate in the graph. The computation will begin only once this number of Providers are actively participating in this graph.

Fetching Results

The Requester can now fetch the computed results of the Ops that they had previously set to persist.

output = R.fetch_persisting_op(op_name="c_output")
print(output)

Documentation

Ravop documentation

License

This project is licensed under the MIT License - see the LICENSE file for details

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ravop-0.12.tar.gz (18.2 kB view details)

Uploaded Source

File details

Details for the file ravop-0.12.tar.gz.

File metadata

  • Download URL: ravop-0.12.tar.gz
  • Upload date:
  • Size: 18.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.11

File hashes

Hashes for ravop-0.12.tar.gz
Algorithm Hash digest
SHA256 342b59fe5d32207a0950d77717ed3c1f5f3396e4133cfe54a6ea3b11dc7accf8
MD5 fa472a1b4a4bb78d556fc695a7aae0d3
BLAKE2b-256 9616753c65de617f352a1ba58a78a993e63d87f09d786bda898daf31c3ba895e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page