Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.
6813 Discussions

Supressing of the Status messages of the ipp in the msvc output window

GF3
New User
79 Views

I want to suppress the ipp Status messages in the output window of MSVC, because there are a lot of ipp messages which makes the use of debug traces very difficult. I'm using the c# programming language. I use a wrapper dll for the intel functions like fft. The wrapper dll uses a c++ dll which contains the calls of the Intel ipp funktions. The chatgpt gave me a lot of proposals, but nothing works. Any help is wecome

0 Kudos
1 Reply
Ellen261Rister
New User
69 Views

Hello!

Yes, this is a common issue with Docker's isolation. Your script is failing because the container is sandboxed and cannot access the D-Bus socket on your host (WSL2), which is necessary to communicate with the Bluetooth service. The solution is to grant the container access by using the --privileged flag and a volume mount: docker run --privileged -v /var/run/dbus:/var/run/dbus .... This allows the container to access the host's system resources and resolve the FileNotFoundError. 

0 Kudos
Reply