super-dense.rs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //! # Super Dense Coding
  2. //!
  3. //! If Alice and Bob share a pair of entangled qubits, then Alice can encode two classical bits into her one entangled qubit,
  4. //! send it to Bob, and Bob can decode it with the help of his entangled qubit.
  5. extern crate qcgpu;
  6. use qcgpu::Simulator;
  7. fn superdense(input: &str) -> u8 {
  8. let mut state = Simulator::new_opencl(2);
  9. let input_str = String::from(input);
  10. // Prepare the bell state
  11. state.h(0);
  12. state.cx(0, 1);
  13. // Alice prepares her qubit
  14. let alice = 1;
  15. if input_str.get(0..1) == Some("1") {
  16. state.z(alice);
  17. }
  18. if input_str.get(1..2) == Some("1") {
  19. state.x(alice);
  20. }
  21. println!("\nState after Alice prepares her qubit: \n{}", state);
  22. // Alice sends her qubit to Bob
  23. let bob = 0;
  24. state.cx(alice, bob);
  25. state.h(alice);
  26. println!(
  27. "\nState after Bob receives Alice's qubit and 'decodes' it: \n{}",
  28. state
  29. );
  30. state.measure()
  31. }
  32. fn main() {
  33. use std::io;
  34. println!("Two bit string to send:");
  35. let mut input = String::new();
  36. match io::stdin().read_line(&mut input) {
  37. Ok(_n) => {
  38. let result = superdense(input.as_str());
  39. println!("\nDecoded string is: {}", result);
  40. }
  41. Err(error) => println!("error: {}", error),
  42. }
  43. }