Options to create blob file from IR using compile_tool.exe.
- Executed compile_tool.exe without specifying a folder for the output blob file:
compile_tool.exe -ip U8 -d MYRIAD -VPU_NUMBER_OF_SHAVES 4 -VPU_NUMBER_OF_CMX_SLICES 4 -m <path_to_xml>
- Executed compile_tool.exe with specifying a folder which has the write permission:
compile_tool.exe -ip U8 -d MYRIAD -VPU_NUMBER_OF_SHAVES 4 -VPU_NUMBER_OF_CMX_SLICES 4 -m <path_to_xml> -o <path_to_output_dir>
- In both cases, encountered error: Output file can't be opened for writing
Option 1:
-
Start command prompt as Administrator.
-
Execute compile_tool.exe without specifying a folder for the output blob file:
compile_tool.exe -ip U8 -d MYRIAD -VPU_NUMBER_OF_SHAVES 4 -VPU_NUMBER_OF_CMX_SLICES 4 -m <path_to_xml>
-
The output blob file is generated in the same directory as the compile_tool.exe.
Option 2:
-
Execute compile_tool.exe with creating an output blob file in a folder which has write permission:
compile_tool.exe -ip U8 -d MYRIAD -VPU_NUMBER_OF_SHAVES 4 -VPU_NUMBER_OF_CMX_SLICES 4 -m <path_to_xml> -o <path_to_output_dir>\<name>.blob
-
The output blob file is generated in the specified directory.