A client python API for accessing LightSolver's capabilities
Project description
LightSolver Platform Client
The LightSolver Platform Client is a Python package designed to interface with the LightSolver Cloud to facilitate solving Quadratic Unconstrained Binary Optimization (QUBO) problems.
This package is designated for internal access to features during the development process, as well as serves as a prototype for future versions of the production LightSolver Platform Client.
Features
- QUBO Problem Solving: The
solve_qubo
function accepts a QUBO problem, represented either as a 2D array (matrix) or an adjacency list, and returns the solution. - Synchronous and Asynchronous Operation: Users can choose between blocking (synchronous) and non-blocking (asynchronous) modes for QUBO problem solving.
- Flexible Installation: Compatible with both Windows and MacOS systems.
Solve QUBO
The solve_qubo
function handles the computation of QUBO problems, either represented by a 2D array (matrix) or by an adjacency list. For code samples, see the Usage section.
Input Matrix Validity
- The matrix must be square.
- The matrix supports int or float cell values.
Return Value
A dictionary with the following fields:
- 'id': Unique identifier of the solution.
- 'solution': The solution as a Python list() of 1s and 0s.
- 'objval: The objective value of the solution.
- 'solverRunningTime': Time spent by the solver to calculate the problem.
- 'receivedTime': Timestamp when the request was received by the server.
Synchronous and Asynchronous Usage
- Synchronous Mode (Default): The
waitForSolution
flag is set to True by default. The function blocks operations until a result is received. - Asynchronous Mode: Set
waitForSolution
to False. The function returns immediately with a token object, allowing the script to continue while the server processes the QUBO problem.
Setting Up
Prerequisites
- Operating System: MacOS or Windows 11.
- Valid credentials for connecting to the LightSolver Cloud (Registration).
- LightSolver Client code project (provided separately).
- Verify installation of software for unzipping the LightSolver Client.
- Python 3.10 or higher (Download Here).
- Select the appropriate MacOS/Windows version at the bottom.
- Note: for Windows installation, switch on the "Add to Path" option in the wizard.
- Highly Recommended: Use a virtual environment before installing laser-mind-client (Please see detailed action further below under the relevant OS).
Installation
Complete the installation on Windows or MacOS as described below. For further assistance with setup or connection issues, contact support@lightsolver.com.
Windows
-
Press the windows key, type "cmd", right click on the result and select "Run as administrator".
-
Navigate to the root folder where you unzipped and plan to use the LightSolver Client:
cd <your project folder>
-
(Recommended) Set the LightSolver credentials using environment variables (will remove the need to provide credentials for every usage). Run the following command:
python setup_env.py
- (Recommended) Create a virtual environment:
python -m venv .venv
- (Recommended) Activate the new virtual environment:
.venv\Scripts\activate
- Install the laser-mind-client package. This command instructs pip to install the package from a local folder instead of searching online:
pip install --no-cache-dir --find-links=.\packages laser-mind-client
- (Recommended) Test LightSolver credentials Run the following command:
python test_env.py
- (Recommended) Test - using the inline project test examples Run the following command:
python ./tests/test_solve_qubo_matrix.py
MacOS
-
Open new terminal window
-
Navigate to the root folder where you unzipped and plan to use the LightSolver Client:
cd <your project folder>
-
(Recommended) Set the LightSolver credentials using environment variables (will remove the need to provide credentials for every usage). Run the following command:
python3 setup_env.py
source ~/.bash_profile
- (Recommended) Create a virtual environment:
python3 -m venv .venv
- (Recommended) Activate the new virtual environment:
chmod 755 .venv/bin/activate
source .venv/bin/activate
- Install the laser-mind-client package. This command instructs pip to install the package from a local folder instead of searching online:
pip install --no-cache-dir --find-links=./packages laser-mind-client
- (Recommended) Test LightSolver credentials Run the following command:
python3 test_env.py
- (Recommended) Test - using the inline project test examples Run the following command:
python3 ./tests/test_solve_qubo_matrix.py
Authentication
Initialization of the LaserMind
class automatically forms a secure and authenticated connection with the LightSolver Cloud.
Subsequent calls by the same user are similarly secure and authenticated.
Usage
To begin solving any QUBO problem:
- Create an instance of the
LaserMind
class. This class represents the client that requests solutions from the LightSolver Cloud. - Call the
solve_qubo
function using either a matrix or an adjacency list. Note: You may either provide a value formatrixData
or foredgeList
, but not both.
Solve QUBO Matrix Example
This example creates a matrix representing a QUBO problem and solves it using the LightSolver Platform Client.
The solve_qubo
function is used with the following parameters:
matrixData
: A 2D array representing the QUBO problem.timeout
: The required time limit for the calculation in seconds.
import numpy
from laser_mind_client import LaserMind
# Create a mock QUBO problem
quboProblemData = numpy.random.randint(-1, 2, (10,10))
# Symmetrize the matrix
quboProblemData = (quboProblemData + quboProblemData.T) // 2
# Connect to the LightSolver Cloud
lsClient = LaserMind()
res = lsClient.solve_qubo(matrixData = quboProblemData, timeout=1)
print(res)
Solve QUBO Adjacency List Example
This example describes a QUBO problem using an adjacency list. This is useful for sparse matrices.
The solve_qubo
function is used with the following parameters:
edgeList
: The adjacency list representing the QUBO problem.timeout
: The required time limit for the calculation in seconds.
from laser_mind_client import LaserMind
# Create a mock QUBO problem
quboListData = [
[1,1,5],
[1,2,-6],
[2,2,3],
[2,3,-1],
[3,10,1]]
# Connect to the LightSolver Cloud
lsClient = LaserMind()
res = lsClient.solve_qubo(edgeList=quboListData, timeout=1)
print(res)
Solve QUBO Matrix using Asynchronous Flow
This example demonstrates how to solve a QUBO problem asynchronously using the LightSolver Platform Client.
Begin by creating a matrix to represent your QUBO problem.
The solve_qubo
function is used with the following parameters:
matrixData
: A 2D array representing the QUBO problem.timeout
: The desired time limit for the calculation in seconds.waitForSolution
: A boolean flag set toFalse
to indicate non-blocking mode.
import numpy
from laser_mind_client import LaserMind
# Create a mock QUBO problem
quboProblemData = numpy.random.randint(-1, 2, (10,10))
# Symmetrize our matrix
quboProblemData = (quboProblemData + quboProblemData.T) // 2
# Connect to the LightSolver Cloud
lsClient = LaserMind()
# Request a solution to the QUBO problem and get the request token for future retrieval.
# This call does not block operations until the problem is solved.
requestToken = lsClient.solve_qubo(matrixData = quboProblemData, timeout=1, waitForSolution=False)
# You can run other code here that is not dependant on the request, while the server processes your request.
# Retrieve the solution using the get_solution_sync method.
# This blocks operations until the solution is acquired.
res = lsClient.get_solution_sync(requestToken)
print(res)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file laser_mind_client-0.23.0.tar.gz
.
File metadata
- Download URL: laser_mind_client-0.23.0.tar.gz
- Upload date:
- Size: 10.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1e7daea36a7a3656999b743cbff9891d7d7edf4159b2d27483cfeceb14f2280 |
|
MD5 | c6ecbbd3658e5baa8612f7ea4d98689a |
|
BLAKE2b-256 | b05ba50f3bf331f8f7c8ceb633253b3af2a7399301aea9cc82993151f4aa604c |
File details
Details for the file laser_mind_client-0.23.0-py3-none-any.whl
.
File metadata
- Download URL: laser_mind_client-0.23.0-py3-none-any.whl
- Upload date:
- Size: 11.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 409b978ef060d45053c3b262b0051a0529226637d7c006601ca4eec673f55c30 |
|
MD5 | 8cae009c7bfebbb447cac0633a46e682 |
|
BLAKE2b-256 | 850c0340395d5df9c9804ea77378f1125c2dc09a50376eeb51310ae4d1d6b222 |