Advertisement
Guest User

Untitled

a guest
Aug 24th, 2018
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 1.26 KB | None | 0 0
  1. (define-public perftest
  2.   (package
  3.    (name "perftest")
  4.    (version "4.2-0.8")
  5.    (source (origin
  6.             (method url-fetch)
  7.             (uri "https://github.com/linux-rdma/perftest/releases/download/V4.2-0.8/perftest-4.2-0.8.g0e24e67.tar.gz")
  8.             (sha256
  9.              (base32 "1r3pxn7cx3grb8myb4q1b0pk447pc06cifd0v7ym13xw00372dlx"))))
  10.    (build-system gnu-build-system)
  11.    (inputs `(("rdma-core" ,rdma-core)
  12.              ("glibc" ,glibc)))
  13.    (home-page "https://github.com/linux-rdma/perftest/")
  14.    (synopsis "Open Fabrics Enterprise Distribution (OFED) Performance Tests")
  15.    (description "This is a collection of tests written over uverbs intended for
  16. use as a performance micro-benchmark. The tests may be used for HW or SW tuning
  17. as well as for functional testing.
  18.  
  19. The collection contains a set of bandwidth and latency benchmark such as:
  20. @enumerate
  21. @item Send        - @code{ib_send_bw} and @code{ib_send_lat}
  22. @item RDMA Read   - @code{ib_read_bw} and @code{ib_read_lat}
  23. @item RDMA Write  - @code{ib_write_bw} and @code{ib_wriet_lat}
  24. @item RDMA Atomic - @code{ib_atomic_bw} and @code{ib_atomic_lat}
  25. @item Native Ethernet (when working with MOFED2) - @code{raw_ethernet_bw}, @code{raw_ethernet_lat}
  26. @end enumerate")
  27.    (license license:gpl2)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement