Qubit Distribution : Quantum Swarm
Customization Guide
Step 0 / 6
Setup in 15 Minutes
1
Install from AppExchange
One-Click
One-click install. No code deployment required. The managed package includes all Apex classes, LWC components, and Named Credentials pre-configured for immediate use.
2
Configure API Key
Config
Navigate to Setup → Named Credentials → QuantumSwarm. Enter your API key from epochcoreqcs.com/dashboard to authenticate your organization.
3
Add Dashboard Component
Drag & Drop
Drag the Quantum Swarm Lightning component onto any Lightning page. Supports App Builder, Record Pages, and Home Pages with full responsive layout.
4
Select Backend Mode
Routing
Choose your preferred quantum backend routing strategy. Auto mode dynamically selects the optimal backend for each job based on queue depth, fidelity, and qubit requirements.
Fidelity-First
Speed-First
5
Execute First Job
Code
Run your first quantum operation. The example below executes a VQE molecular simulation across 24 qubits with automatic backend selection.
Apex
// Execute a quantum operation via Quantum Swarm QuantumSwarm.execute( 'vqe_molecular_sim', new Map<String, Object>{ 'qubits' => 24, 'shots' => 4096, 'backend' => 'auto' } );
6
Go to Production
Live
Enable for all users via Permission Sets. Monitor usage in the Quantum Swarm dashboard. You're live — quantum computing is now part of your Salesforce workflow.
Permission Set
// Assign to user profiles PermissionSetAssignment psa = new PermissionSetAssignment( AssigneeId = userId, PermissionSetId = 'QuantumSwarm_User' ); insert psa;