InfiniBand is a switched fabric communications link used in high-performance computing and enterprise data centers.
0
votes
1answer
7 views
Use infiniband with Akka in Scala?
Is it possible to use infiniband instead of TCP/IP with Akka? I want to use Akka for HPC on the local cluster and the network bottleneck is significant using TCP/IP...
0
votes
1answer
33 views
find maximum allowed ibv_reg_mr
I'm trying to diagnose a memory allocation error thrown by ibv_reg_mr() in software that I use, and my suspicion is that it's related to known problems with some Mellanox Infiniband cards where the ...
0
votes
2answers
35 views
ibv_post_recv() return -1 instead of errno
function ibv_post_recv() return -1, but according to documentation it should return errno.
How to know the fail reason in this case?
Best Regards,
0
votes
0answers
26 views
Set up computational cluster using infiniband fails [closed]
My task: I need to assemble computational cluster, consists of two nodes using infiniband technology.
When I try to start mpirun ... for two nodes, the process hangs. If i try to use flag ...
0
votes
0answers
44 views
Low-latency infiniband - Enabling SDP_NODELAY without code changes (Java)
We are looking to use the Sockets Direct Protocol (SDP) for RDMA to acheive the lowest latency network hops possible.
For small packets, lowest latency on a TCP connection is achieved by using the ...
0
votes
1answer
42 views
function ibv_get_cq_event() does not return after destrcution
The function ibv_get_cq_event() block and never return even after destruction all resources.
I do init all InfiniBand resources, launch ibv_get_cq_event in separate thread, then destroy all ...
1
vote
1answer
213 views
Socket Direct Protocol error: “Address family not supported by protocol”
I thought I would try out SDP on our infiniband hardware.
However, when I try to add AF_INET_SDP as the first argument to socket() I get the following error:
"Address family not supported by ...
0
votes
0answers
42 views
With librdmacm how do I associate data with my id? [closed]
In socket applications that use epoll or there is a way to associate arbitrary data against a socket so that when an event is fired, you can use the arbitrary data to provide some useful context.
Now ...
0
votes
2answers
91 views
How to write a Hello World iWarp application?
I am trying to write a small program demonstrating Remote DMA over iWarp. I have the softiwarp Linux kernel module loaded and the userspace library compiled.
I am looking for documentation or sample ...
1
vote
1answer
212 views
Infiniband addressing - host names to IB address without IBoIP
I've just started getting familiar with infiniband and I'm wanting to understand the methods you can use to address the infiniband nodes.
Based on the code is the example from: RDMA read and write ...
0
votes
1answer
120 views
How to find out InfiniBand installation path
I want to compile MVAPICH2 myself, but not sure where to find psm.h file, it cant be found in default places.
Anyone knows that which command I can use to find InfiniBand?
3
votes
2answers
282 views
MPI_SEND takes huge part of virtual memory
Debugging my program on big counts of kernels, I faced with very strange error of insufficient virtual memory. My investigations lead to peace of code, where master sends small messages to each slave. ...
0
votes
3answers
306 views
Packet capture in RDMA?
Is there any utility like tcpdump in Linux for capturing the traffic which is going over RDMA channel? (Infiniband/RoCE/iWARP)
0
votes
1answer
59 views
What is an OOB Lan workstation? [closed]
I am trying to setup an infiniband cluster using qlogic 12200 infiniband switch and rocks 6.0 as OS. I need to connect the infiniband switch to an OOB lan workstation using a RJ-45 connector. I can ...
-1
votes
1answer
725 views
Port status is always down and cant open UMAD port
I have newly installed ofed-1.5-3 on following machine :
SUSE Linux Enterprise Server 11 (x86_64)
VERSION = 11
PATCHLEVEL = 1
Our admin has installed CX354A card (MCX354A-FCBT) card on the machine.
...
0
votes
2answers
418 views
infiniband rdma poor transfer bw
In my application I use an infiniband infrastructure to send a stream of data from a server to another one. I have used to easy the development ip over infiniband because I'm more familiar with socket ...
1
vote
1answer
989 views
GPUDirect RDMA transfer from GPU to remote host
Scenario:
I have two machines, a client and a server, connected with Infiniband. The server machine has an NVIDIA Fermi GPU, but the client machine has no GPU. I have an application running on the ...
0
votes
1answer
307 views
0
votes
2answers
344 views
/etc/init.d/openibd: line 147: syntax error near unexpected token `;&'
Hi I am trying to install a fairly lengthy script to install infiniband and the OFED stack on rocks cluster 6.0
here is what i try to run
user@cluster # /etc/init.d/openibd restart
...
3
votes
1answer
703 views
RDMA memory sharing
I have a few multi-core computers connected by Infiniband network. I would like to have some low-latency computation on a pool of shared memory, with remote atomic operations. I know RDMA is the way ...
0
votes
1answer
297 views
I am planning to connect 18 nodes together with infiniband what parts do I need
I am planning to connect 18 nodes together with infiniband
what do I need
1 36 port switch ? or do I need 2 switches ?
1 HCA for each node ? dual port ?
1 cable for each node ? or do I need 2
can the ...
1
vote
0answers
206 views
Analogous to tcpkill for IP over InfiniBand
Does anybody know if there is an equivalent tool to tcpkill for killing TCP connections that travel over Infiniband?
At the moment, when I use an infiniband interface, tcpkill complains:
# tcpkill -i ...
0
votes
1answer
299 views
ipoib: Check if an infiniband node with an given iboip is reachable
I need to check if for an given ipoib IP address the associated IB node is connected to the infiniband switch.
The idea is to get the guid of the IB port to which the IP packets are send and check ...
0
votes
1answer
178 views
Interworking MPI between Windows and Linux
I have several Windows box and Linux box interconnected with Infiniband, and I need to run MPI jobs in both environment, does anyone know what's the best way to interwork them ?
Currently, I am ...
0
votes
2answers
164 views
Programmatically retrieve infiniband device ip address
I'm trying to find programmatically the inet address of an Infiniband interface whose name is not know a priori.
I'm on Linux, and I would like to avoid the parsing of ifconfig (8) output.
I've ...
3
votes
1answer
4k views
Difference between IPoIB and TCP over Infiniband
Can someone explain the concepts of IPoIB and TCP over infiniband? I understand the overall concept and data rates provided by native infiniband, but dont quite understand how TCP and IPoIB fit in. ...
1
vote
1answer
291 views
What's the easiest way to use infiniband from .NET?
I've got two computers with Mellanox ConnectX VPI MT26428 infiniband cards running Windows 7 with drivers installed. What is the easiest way to start doing message passing (e.g. via MPI) from .NET?
0
votes
2answers
365 views
How to choose InfiniBand or Ethernet programmatically?
I need (simple) program which allows to choose what to use to transfer data - Infiniband or Ethernet and switch them in runtime. I searched through InfiniBand docs, google and google/codeseaarch and ...