Metadata-Version: 2.4
Name: dynex-nightly
Version: 0.1.27
Summary: Dynex SDK (beta) Neuromorphic Computing Library
Author: Dynex Developers
License: BSD-3-Clause
Keywords: neuromorphic,quantum,sdk,dynex,computing
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25
Requires-Dist: numpy>=1.23
Requires-Dist: dimod>=0.10.17
Requires-Dist: pyqubo>=1.2.0
Requires-Dist: tabulate>=0.8
Requires-Dist: tqdm>=4.66
Requires-Dist: pycryptodome>=3.18
Requires-Dist: pennylane>=0.34
Requires-Dist: ipython>=8.0
Requires-Dist: pydantic>=2.11.7
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: isort; extra == "dev"
Requires-Dist: matplotlib; extra == "dev"

> ⚠️ **Developer Preview – Nightly Build**
>
> This library is an **experimental developer build** of the Dynex SDK.
> It is currently in **active development** and may contain unfinished features, unstable APIs, and breaking changes.
>
> This version is published as part of our **nightly/dev pipeline** and reflects the latest internal state of the project.
> It is intended **for testing, experimentation, and developer feedback only**.
>
> You are using this version **at your own risk**.  
> **Do not use it in production environments or critical systems.**
>
> For stable releases, refer to the main package on [PyPI](https://pypi.org/project/dynex).
>
> We welcome your feedback, issues, and contributions as we iterate and improve.

# Dynex SDK

The Dynex SDK provides a neuromorphic Ising/QUBO sampler which can be called from any Python code. Developers and
application developers already familiar with the Dimod framework, PyQUBO or the Ocean SDK will find it very easy to run
computations on the Dynex neuromorphic computing platform: The Dynex Sampler object can simply replace the default
sampler object which typically is used to run computations on, for example, the D-Wave system – without the limitations
of quantum machines. The Dynex SDK is a suite of open-source Python tools for solving hard problems with neuromorphic
computing which helps reformulate your application’s problem for solution by the Dynex computing platform. It also
handles communication between your application code and the Dynex neuromorphic computing platform automatically.

# Installation

```
pip install dynex-nightly
``` 

# Config guide

Key Features:
- Environment variable priority (ENV > config file)
- Automatic config file discovery

DynexConfig has attrs:
- solver_version : int 1 or 2 (by default equal 1)
- mainnet : bool
- retry_count : int (by default equal 5)
- config_path : str
- solver_path : str 

```python
import dynex
import dimod
from pyqubo import Array

from dynex import DynexConfig

N = 15
K = 5
numbers = [4.8097315016016315, 4.325157567810298, 2.9877429101815127,
           3.199880179616316, 0.5787939511978596, 1.2520928214246918,
           2.262867466401502, 1.2300003067401255, 2.1601079352817925,
           3.63753899583021, 4.598232793833491, 2.6215815162575646,
           3.4227134835783364, 0.28254151584552023, 4.2548151473817075]

q = Array.create('q', N, 'BINARY')
H = sum(numbers[i] * q[i] for i in range(N)) + 5.0 * (sum(q) - K) ** 2
model = H.compile()
Q, offset = model.to_qubo(index_label=True)

bqm = dimod.BinaryQuadraticModel.from_qubo(Q, offset)
config = DynexConfig(solver_version=2, mainnet=False)

model = dynex.BQM(bqm, logging=True, config=config)
sampler = dynex.DynexSampler(model, bnb=False, description='Dynex SDK test', config=config)
``` 

You can use
```python
config = DynexConfig(
    config_path="./custom/dynex.ini",
    solver_path="./solvers/dynexcore",
    mainnet=False,
    solver_version=2
)
```
or set api & ftp params by env
```dotenv
export DYNEX_API_KEY=your-key
export DYNEX_API_SECRET=your-secret
export DYNEX_API_ENDPOINT=https://api.dynex.dev
```
