Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@qiskit/algos

Package Overview
Dependencies
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@qiskit/algos

Quantum Information algorithms for humans

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
Maintainers
4
Weekly downloads
 
Created
Source

QISKit.js algorithms

:atom_symbol: Quantum Information Software Kit Quantum Information algorithms for humans.

Please visit the main repository of the project to know about the rest of the tools.

Install

:coffee: Install Node.js v8 and then:

npm i @qiskit/algos

Use

:pencil: You can visit the complete example in this test.

const algos = require('@qiskit/algos');

console.log('Version');
console.log(algos.version);

const token = 'YOUR_LONG_TERM_TOKEN';
const userId = 'YOUR_USER_ID';

// With the default backend and length.
const jobId = await algos.random(token, userId)
console.log(`JobId: ${jobId}`)

// ... later
console.log(await algos.result(token, userId, jobId))

API

:eyes: Full specification.

version

The actual version of the library.

  • version (string) - Version number.

async random(token, userId, opts) -> jobId

Generate a true random number among 0 and 1.

  • token (string) - QX long term access token (provided by the login method of the qisqit-cloud package).
  • userId (string) - User identifier, same that for the last option.
  • opts (object) - Optional parameters:
    • backend (string) - Where to run the operation. Supported: "simulator", "ibmqx2", "ibmqx4", "ibmqx5", "qs1_1". (default: "simulator")
    • length (number) - Number of random hex characters to ask for, used as entropy. (default: 16)
  • jobId (string) - Identifier for the generated background job (see next method).

async result(token, userId, jobId) -> result

Get the result of a background job generated by an algorithm method.

  • token
  • userId
  • jobId (string) - Job identifier got as initial response.
  • result (?) - Depending on the used agorithm:
    • "random": (object) - With nex fields:
      • status (string) - To know if the job has finished correctly. Supported: "running", "completed", TODO.
      • data (number) - Generated random number. Only present if "status" is "completed".

Keywords

FAQs

Package last updated on 24 May 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc