Skip to main content

Framework for the Ising model and QUBO.

Project description

OpenJij : Framework for the Ising model and QUBO.

PyPI version shields.io PyPI pyversions PyPI implementation PyPI format PyPI license PyPI download month

build-test Build Documentation CodeQL Codacy Badge Maintainability codecov

Coverage Graph

Sunburst Grid Icicle
  • python >= 3.7
  • (optional) gcc >= 7.0.0
  • (optional) cmake >= 3.22
  • (optional) Ninja

Change IMPORT

install

install via pip

Note: To use GPGPU algorithms, please follow the section install via pip from source codes below. GPGPU algorithms are automatically enabled once CMake finds CUDA frameworks during installation.

# Binary
$ pip install openjij 
# From Source (CUDA)
$ pip install --no-binary=openjij,jij-cimod  openjij

install via pip from source codes

To install OpenJij from source codes, please install CMake first then install OpenJij.

cmake setup

If you want to use setup.py instead of PIP, You will need to install CMake>=3.22.
We are Highly recommended install CMake via PYPI.

$ pip install -U cmake

Make sure the enviroment path for CMake is set correctly.

install OpenJij

$ pip install --no-binary=openjij,jij-cimod openjij

install from github repository

$ git clone git@github.com:OpenJij/OpenJij.git
$ cd openjij
$ python -m pip install -vvv .

For Contributor

Use pre-commit for auto chech before git commit. .pre-commit-config.yaml

# pipx install pre-commit 
# or 
# pip install pre-commit
pre-commit install

Test

Python

$ python -m venv .venv
$ . .venv/bin/activate
$ pip install pip-tools 
$ pip-compile setup.cfg
$ pip-compile dev-requirements.in
$ pip-sync requirements.txt dev-requirements.txt
$ source .venv/bin/activate
$ export CMAKE_BUILD_TYPE=Debug
$ python setup.py --force-cmake install --build-type Debug -G Ninja
$ python setup.py --build-type Debug test 
$ python -m coverage html

C++

$ mkdir build 
$ cmake -DCMAKE_BUILD_TYPE=Debug -S . -B build
$ cmake --build build --parallel
$ cd build
$ ./tests/cxxjij_test
# Alternatively  Use CTest 
$ ctest --extra-verbose --parallel --schedule-random

Needs: CMake > 3.22, C++17

  • Format
$ pip-compile format-requirements.in
$ pip-sync format-requirements.txt
$ python -m isort 
$ python -m black 
  • Aggressive Format
$ python -m isort --force-single-line-imports --verbose ./openjij
$ python -m autoflake --in-place --recursive --remove-all-unused-imports --ignore-init-module-imports --remove-unused-variables ./openjij
$ python -m autopep8 --in-place --aggressive --aggressive  --recursive ./openjij
$ python -m isort ./openjij
$ python -m black ./openjij
  • Lint
$ pip-compile setup.cfg
$ pip-compile dev-requirements.in
$ pip-compile lint-requirements.in
$ pip-sync requirements.txt dev-requirements.txt lint-requirements.txt
$ python -m flake8
$ python -m mypy
$ python -m pyright

How to use

Python example

import openjij as oj
sampler = oj.SASampler()
response = sampler.sample_ising(h={0: -1}, J={(0,1): -1})
response.states
# [[1,1]]

# with indices
response = sampler.sample_ising(h={'a': -1}, J={('a','b'): 1})
[{index: s for index, s in zip(response.indices, state)} for state in response.states]
# [{'b': -1, 'a': 1}]

Community

About us

This product is maintained by Jij Inc.

Please visit our website for more information! https://www.j-ij.com/

Licences

Copyright 2022 Jij Inc.

Licensed 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.

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

openjij-0.5.33.tar.gz (83.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

openjij-0.5.33-cp310-cp310-win_amd64.whl (892.9 kB view details)

Uploaded CPython 3.10Windows x86-64

openjij-0.5.33-cp310-cp310-manylinux_2_28_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

openjij-0.5.33-cp310-cp310-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

openjij-0.5.33-cp310-cp310-macosx_12_0_x86_64.whl (560.8 kB view details)

Uploaded CPython 3.10macOS 12.0+ x86-64

openjij-0.5.33-cp310-cp310-macosx_11_0_x86_64.whl (552.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

openjij-0.5.33-cp310-cp310-macosx_11_0_arm64.whl (488.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

openjij-0.5.33-cp310-cp310-macosx_10_16_x86_64.whl (552.5 kB view details)

Uploaded CPython 3.10macOS 10.16+ x86-64

openjij-0.5.33-cp39-cp39-win_amd64.whl (892.2 kB view details)

Uploaded CPython 3.9Windows x86-64

openjij-0.5.33-cp39-cp39-manylinux_2_28_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

openjij-0.5.33-cp39-cp39-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

openjij-0.5.33-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

openjij-0.5.33-cp39-cp39-macosx_12_0_x86_64.whl (560.1 kB view details)

Uploaded CPython 3.9macOS 12.0+ x86-64

openjij-0.5.33-cp39-cp39-macosx_11_0_x86_64.whl (551.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

openjij-0.5.33-cp39-cp39-macosx_11_0_arm64.whl (487.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

openjij-0.5.33-cp39-cp39-macosx_10_16_x86_64.whl (551.8 kB view details)

Uploaded CPython 3.9macOS 10.16+ x86-64

openjij-0.5.33-cp38-cp38-win_amd64.whl (892.7 kB view details)

Uploaded CPython 3.8Windows x86-64

openjij-0.5.33-cp38-cp38-manylinux_2_28_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

openjij-0.5.33-cp38-cp38-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

openjij-0.5.33-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

openjij-0.5.33-cp38-cp38-macosx_12_0_x86_64.whl (560.2 kB view details)

Uploaded CPython 3.8macOS 12.0+ x86-64

openjij-0.5.33-cp38-cp38-macosx_11_0_x86_64.whl (551.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ x86-64

openjij-0.5.33-cp38-cp38-macosx_11_0_arm64.whl (487.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

openjij-0.5.33-cp38-cp38-macosx_10_16_x86_64.whl (551.8 kB view details)

Uploaded CPython 3.8macOS 10.16+ x86-64

openjij-0.5.33-cp37-cp37m-win_amd64.whl (906.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

openjij-0.5.33-cp37-cp37m-manylinux_2_28_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.28+ x86-64

openjij-0.5.33-cp37-cp37m-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.28+ ARM64

openjij-0.5.33-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

openjij-0.5.33-cp37-cp37m-macosx_12_0_x86_64.whl (553.0 kB view details)

Uploaded CPython 3.7mmacOS 12.0+ x86-64

openjij-0.5.33-cp37-cp37m-macosx_11_0_x86_64.whl (544.4 kB view details)

Uploaded CPython 3.7mmacOS 11.0+ x86-64

openjij-0.5.33-cp37-cp37m-macosx_10_16_x86_64.whl (544.5 kB view details)

Uploaded CPython 3.7mmacOS 10.16+ x86-64

File details

Details for the file openjij-0.5.33.tar.gz.

File metadata

  • Download URL: openjij-0.5.33.tar.gz
  • Upload date:
  • Size: 83.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for openjij-0.5.33.tar.gz
Algorithm Hash digest
SHA256 11271b45cc48b21a4e953b113bd20776d4acab7ce2571cc7175ede4ccc9a4f48
MD5 9ad3b35056be14fff8d41cdec1367c07
BLAKE2b-256 1b1fc5fd7d301a0208af3dcd6ed7f54fdbafa21fcdffcaccf5d82e27bfc4ff08

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: openjij-0.5.33-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 892.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for openjij-0.5.33-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f7c41864c3033a4f98b91d2e8cd81a34c06dde577a16f0fa17d781551a169a3
MD5 9d352eba163ee28e80161c21cb191473
BLAKE2b-256 64d907c4e3cf5cdb8ff241a7753b952e766e5375ea4cf676fe0b07a98ff3049e

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98fed6725246ff76e4fffd6e9b1263c481232ceba740f1a04281bca26358da42
MD5 09ae1046c140fd59217b15535ccfae1e
BLAKE2b-256 c6948176b1cdf0cdc0d2286ba99933ddbccb419c8e3df219749c760ec6bdc889

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 54fc66652dde3af684616940923bd6550d35dee46afe79956a9330ee4e3cecc4
MD5 a221d3ee1bfe2a042556946a0bd2b32b
BLAKE2b-256 1baac821d3abefdaceaeff6a2888fd0c04818d9d0e76c733aab41709ebace038

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 51dd76844003fcc6008ee9c3780ac998ca257cf6868f163055657ef78ab6cc7c
MD5 eea88df188dffc4f01a8d55d7228dd50
BLAKE2b-256 609d402af592a4c2eeaf64aed074dc5a64b2b45e5d1d0a986a0457595c1fbc37

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4d6b2f6ed48f5144405498c2a05e57996b38f00c292ca7f549f43397b069e009
MD5 6d12c2a97d93d24be8f562cc068b0952
BLAKE2b-256 ce31b57ceb802c5c4f71066a69c260a39be4f4825d3c5ef2237eef4de0323b07

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0a963f386992ea41e21a504be5b1d879c1e929fa87162c121dd55769e0e4d86
MD5 4c05daa98d5780e325ff8c9e937ecdd7
BLAKE2b-256 6d003d73347c50f7fe2b59b14b5afda636208df89879e0d9cb46266467c5dfb7

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp310-cp310-macosx_10_16_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp310-cp310-macosx_10_16_x86_64.whl
Algorithm Hash digest
SHA256 f2589a90162717715606f6a194fa0931728a827e328d77e4235b5b480b75336e
MD5 cb03a0489557b3e9a563b9924798b527
BLAKE2b-256 229e3cccc9930e7a95b43d5dad085227055173ffe3f6bbe5c94d288e526a292c

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: openjij-0.5.33-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 892.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for openjij-0.5.33-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ea3e3439e22299ab91d426658a8d307fdda1b7a08ced270604bf1518addd5dbd
MD5 6a7489809f9a465de027e805cbceb664
BLAKE2b-256 14d5a2eb5c2c1df89663da409c136de8e25669ad85de67174a925b5d697cac4b

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 583faf34e39ca8124769912f213dcec4b8a336a9106e7eea7ab7b32dc15776b5
MD5 e70341ed5b30cb18256fc2096ffd0e00
BLAKE2b-256 70e913d4edd546b1e81e9e464d446650a22b9585de5103a6459096aa2919760d

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d583988c7aa47f9c4adc7f8e0c937846de0f6972d33de4254a202b53f4627a12
MD5 06f3de53e1dd04bea04c18f8a2282231
BLAKE2b-256 8721030ca91e8f95fe6c082bea4a09416f21fa5916009e11d819936494d13b3c

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6968e61eb3659a3febfb6d3a702e58ea98eeeb010bcef07b52352efbba943690
MD5 7721e9fff78337d70145dc283e06a224
BLAKE2b-256 fa4e8d3b4e19362b80e4ff8171641d838f42faf2154cfe3e898e4d353718a6c3

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp39-cp39-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 d678144b857141a9d2c98f6d6479cb70a2fa1e1eb638896eecca646e1636aa0b
MD5 a25e6d1f49eb1400f7ed1134638a151d
BLAKE2b-256 9bb39d8bf3571cd299c851979bc96759a9ae11a287e3adca2324eaa894612f32

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6b2c53527a300e53df4dbfab6376b7fe5e8133aedad964a77c2e46de4835a559
MD5 73bd5683d8f3ccdcd246721ef66bfb84
BLAKE2b-256 19c78f07c3a303741452f94c6fb6cd82f8c1f822d9f2c45ebcc9bdadd1f4b044

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2fb739234d1aef1374d9902ef89026053c520496290b4cb802308d48b80b4aac
MD5 5497db9a287ac9d1a8bf754d66123597
BLAKE2b-256 8305af53610084fbb8f49fa4a6ea4367d8f09305843b820322d5fcaa9ed9f6ac

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp39-cp39-macosx_10_16_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp39-cp39-macosx_10_16_x86_64.whl
Algorithm Hash digest
SHA256 0c87a9d5e3347ee13564b6fc71cdd8cf2aab8226407087335ea671ab88a96eb9
MD5 ba07aede30aae48f69d04b5847a58d6a
BLAKE2b-256 15cdec220f3fc7c82961cd897a5d1644b5c81a3957f49df2eba4a4399585560f

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: openjij-0.5.33-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 892.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for openjij-0.5.33-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b850af25f5817f2231f2dc7eb627a314bfef2885f8129bbf9d5221c2039d5583
MD5 7d7a1217557ed8dc73e0eb5064063531
BLAKE2b-256 7648eb0067a36f5e57262463f7abebdfb0f9541ee237aa133347cb32fb063fc3

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71861a877df8fea4564aeb12a7f59cc3271fa29662fc010e41d36c0ee82e7147
MD5 c806cf461b1d472d94f53aaf81f107ef
BLAKE2b-256 bbbb87fb8cea1d486cc9eaef7f8bc9826a444610d22fdc8c7d28b4629aac4bb0

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69c6ac3637dd6fe643d5016f1eadf26129e141cc836d628f69f9b91cd4ffe630
MD5 c42ddb252f827f4947a199cd70bf0905
BLAKE2b-256 f9e698aa1bf824db7d42894ebcb4c775357be72f171bc397b9f188b57d25f553

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df0ccf58584dd9150299badc24bb7172c9d70e20b471a5b00ed29936df851b6b
MD5 c253efe56f9ca1a712ff6b022781b1a7
BLAKE2b-256 c663982d8bbf2069e9b2e74757b29f5fe8361bbae1e462106d9bdcf86eceb594

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp38-cp38-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp38-cp38-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 80975c674c584fd58790b6d62a2b0e557d8ed414c1f266e8aedd88b04fb97de6
MD5 d77761ba4d0b37457688c6139fc1777b
BLAKE2b-256 8ebd5e4d29bf03d6b1e041aed76374ff39b78ad97ea73e9331a6d9c163d09ed6

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp38-cp38-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b18630523e2b63a3d96fe5f49713292573bb2a106fd7f8a6310037a0fbd4c90b
MD5 aa6e978bdc8643f921fa73e0f3fae946
BLAKE2b-256 7ac501c57eb030bd7a9e0af09827b135175e91f6be57894fc6820503ef692807

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f840387a770fe82543e25d74dfc394c799c2c213bfdfde996be1ffd3e8546b3
MD5 813ae64b0434573ae407b70100f214c4
BLAKE2b-256 f9383d47f74666512e8e730dc64111bb6ce7a724d13076a657c48d68795d5f00

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp38-cp38-macosx_10_16_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp38-cp38-macosx_10_16_x86_64.whl
Algorithm Hash digest
SHA256 2f35a19cd8fe98fff06012dc1637540886f393d3c02612148ac37f4aac5ac14b
MD5 c7887c48a8a0b59eeb498882eafbbdec
BLAKE2b-256 2c6c05aa24773c70c4e26859f3dfb3aed4910f4c3213a1a245f9c8a310789e46

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: openjij-0.5.33-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 906.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for openjij-0.5.33-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cf8bbb642ffc83c12d7454563d50a108d988e989fb002dbb8fa6b4de71fac76f
MD5 a5ea005b038d7b77fecf39b5866b454c
BLAKE2b-256 f18833381ab25cbcb07e41d7eb49d00b03e748e9a10c8d8c7881587b4888ba4e

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp37-cp37m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5716fa797d4cb5da5be9be4ebff91fb60b15aa5761bd45ddcee4cfb88810ae3e
MD5 4e07ba43de4b56e696b8850180e7a2d8
BLAKE2b-256 0286db3a40fda0d9ff92240b6019c10d632be929c430e6a9eeb5bc52b3a7d1d9

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp37-cp37m-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp37-cp37m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5fcb8aaee8579beaa155c8217b5ee2a4a905557a79260af660323ace6bcd8abe
MD5 2cb693d1ec00f0243f1791dd2ab9d609
BLAKE2b-256 49fd1975dd7b62195c6611af054919921d09ef3c56a4562c506e1b65cfc3c3ef

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b73a8c5570ec1340aa2d14c9661115fbbd9c44ad67a9057099925b421015ab7
MD5 f3a0868105a326180845bc2ece3ad6bf
BLAKE2b-256 f6402c19c316810f3a9f7b97aad7a700cb8331df01d54d90d504dcbfdd68599f

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp37-cp37m-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp37-cp37m-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 eed3b48ed0ef43812e0bfd383e0bc2b5eff23d22f848ada5da9ca0234cb293da
MD5 e5d6a5b50123033e5213b54553737ce6
BLAKE2b-256 2695c651556022cae79f178ba934a6883487570d7e630b0b13d95d3dcf941e22

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp37-cp37m-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9fc08d80f31c2d1b96ee7e9e5ed7d68b14fd44c39b0e8018036224710fd81870
MD5 ea2aaed5a76e960d72efceb38db8489b
BLAKE2b-256 94de3af9639e1018bf7c0ab426d362d499cb6a15658260c0823dec74418b833e

See more details on using hashes here.

File details

Details for the file openjij-0.5.33-cp37-cp37m-macosx_10_16_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.5.33-cp37-cp37m-macosx_10_16_x86_64.whl
Algorithm Hash digest
SHA256 dcc39a6c728fe3baad6302c93329778a8f52b0b901a0b188d0d6069678fdbb8d
MD5 d2e9f64666c50cccf13a9b554b9809a8
BLAKE2b-256 98293a8056fd9fcb2d6e407a4931104d642a6df8bb5a6ae0d3053cf224b60625

See more details on using hashes here.

Supported by

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