Intel® Distribution of OpenVINO™ Toolkit
Community assistance about the Intel® Distribution of OpenVINO™ toolkit, OpenCV, and all aspects of computer vision-related on Intel® platforms.
6392 Discussions

EXC_BAD_ACCESS: Exception 1, Code 3866157048, Subcode 8

1985
Beginner
1,905 Views

Dear support team,

 

I see following crash on device "iMacPro1,1(Arch:x86) os version : Big Sur 11.6.5".

Backtrace is attached, can you please help to resolve it

 

Regards,

Babken

 

0 Kudos
12 Replies
Wan_Intel
Moderator
1,754 Views

Hi Babken,

Thank you for reaching out to us.

 

Could you please provide the following information with us for further investigation?

·      Version of the OpenVINO™ toolkit

·      Hardware specifications

·      Steps to reproduce

 

 

Regards,

Wan

 

0 Kudos
1985
Beginner
1,687 Views

Hi Wan,

 

  1. Version of the OpenVINO™ toolkit
    Version 2021.04
  2. Hardware specification: 
    Device:iMacPro1,1
    Device.family: MacOs 1.6.5
    Release: .134.6
  3. Steps to reproduce:
    Unfortunately I have no reproducible example to share, it happened on our client side (10 clients reported the same issue on the same device)
    The crash caused when loading a model via ov_impl.load(weight*,...) method

 

Regards,

Babken 

 

0 Kudos
1985
Beginner
1,684 Views
0 Kudos
Wan_Intel
Moderator
1,591 Views

Hi Babken,

Thanks for your information.

 

Referring to System Requirements in Install and Configure Intel® Distribution of OpenVINO™ toolkit for macOS, the supported Operating System is macOS 10.15.

 

On another note, macOS 11.5 (64-bit) was validated on Build from source OpenVINO™ toolkit. Please refer to Build OpenVINO™ Inference Engine on macOS* Systems.

 

 

Regards,

Wan


0 Kudos
1985
Beginner
1,554 Views

Hi Wan,

 
Thanks for your reply
In my previous email there where a typo, the os version is 11.6.5
 
Could you please let me know if you see issue with this version?
 
Regards,
Babken
0 Kudos
Wan_Intel
Moderator
1,496 Views

Hi Babken,

I noticed that your client loads the network using the ov_impl.load(weight*,...) method.

 

For your information, you can use the load_network() method to load the network.

For example:

from openvino.inference_engine import IECore

ie = IECore()

net = ie.read_network("alexnet.xml", "alexnet.bin")

exec_net = ie.load_network(network=net, device_name="CPU")

 no_issue.JPG

 

Regards,

Wan

 

0 Kudos
1985
Beginner
1,469 Views

Hi Wan,

 

Thanks for your reply

Do you think this(loading network within ov_impl.load) is leading to pointed crush? If yes can you elaborate a little bit 

 

Warm Wishes,

Babken

0 Kudos
Wan_Intel
Moderator
1,464 Views

Hi Babken,

 

For your information, OpenVINO™ Toolkit uses the Inference Engine to read the Intermediate Representation (IR), ONNX, and execute the model on the device.

 

Referring to OpenVINO™ Toolkit 2021.4 Inference Engine Python API, ov_impl.load() method is not available.

 

Therefore, you can use the load_network() method from OpenVINO™ Toolkit 2021.4 Inference Engine Python API to load the network.

 

For more information on the typical Inference Engine API workflow, please refer to Integrate Inference Engine with Your C++ Application.

 

 

Regards,

Wan


0 Kudos
1985
Beginner
1,432 Views

Hi Wan,

 

Thanks for materials.

 

The steps at our end is following

pInferPlugin = std::make_unique<Core>(XmlPath);

network = pInferPlugin->ReadNetwork(model);

pInferPlugin->LoadNetwork(network, ...);

 

And the crash (backtrace is attached)

The hardware/software info also provided

 

Can you please let me know what could be the reason of crash ? and what I'm doing incorrectly?

 

Let me know if more info is required 

 

 

Regards,

Babken

 

0 Kudos
1985
Beginner
1,389 Views

Hi Wan,

 

is there any ideas to my last reply ?

 

Warm Wishes,

Babken

0 Kudos
Wan_Intel
Moderator
1,382 Views

Hi 1985,

 

I have validated the Hello Classification C++ Sample from OpenVINO™ Toolkit 2021.4.1 LTS on Mas OS Big Sur 11.6.3.

macoa11.jpg

 

For your information, the error you encountered: “EXC_BAD_ACCESS” is an exception raised as a result of accessing bad memory. Please refer to here for more information.

 

On another note, could you please execute Hello Classification C++ Sample from your end to check if you encountered the same error in this sample?

 

 

Regards,

Wan

 

0 Kudos
Wan_Intel
Moderator
1,212 Views

Hi 1985,

Thank you for your question.

 

If you need any additional information from Intel, please submit a new question as this thread is no longer being monitored.

 

 

Regards,

Wan


0 Kudos
Reply