| 685 | |
| 686 | |
| 687 | clblasStatus clblasWriteVector( |
| 688 | size_t nb_elem, |
| 689 | size_t element_size, |
| 690 | const void *A, size_t offA, |
| 691 | cl_mem B, size_t offB, |
| 692 | cl_command_queue command_queue, |
| 693 | cl_uint numEventsInWaitList, |
| 694 | const cl_event *eventWaitList) |
| 695 | { |
| 696 | return clblasWriteMatrix( |
| 697 | clblasColumnMajor, |
| 698 | nb_elem, 1, |
| 699 | element_size, |
| 700 | A, offA, nb_elem, |
| 701 | B, offB, nb_elem, |
| 702 | command_queue, |
| 703 | numEventsInWaitList, |
| 704 | eventWaitList); |
| 705 | } |
| 706 | |
| 707 | |
| 708 | clblasStatus clblasWriteVectorAsync( |
nothing calls this directly
no test coverage detected