Processors
Intel® Processors, Tools, and Utilities
14633 Discussions

GPU of intel-core i7-10700t is not Working

ahmetbtm
Beginner
483 Views

 

I am working on Tiny YOLO V3 Object Detection Sample but instead of using yolov3 tiny I am using standard version of yolov3 -of course converted to the IR files. When I run: qsub yolov3.sh -l nodes=1:idc022 -F "results/i7-10710u/ CPU FP32 {InputVideo} 0.4 {NumRequests_CPU} 1" command it working just fine. But when I change the CPU part to the GPU it is not creating any output. What could cause this?

 

Note: My bash file is as follows:

/*******************************************************

%%writefile yolov3.sh

# Store input arguments: <output_directory> <device> <fp_precision>
# <input_file> <threshold> <numrequest> <numstreams> <labels>
OUTPUT_FILE=$1
DEVICE=$2
FP_MODEL=$3
INPUT_FILE=$4
THRESHOLD=$5
NUMREQUEST=$6
NUMSTREAMS=$7
LABELS=coco.names

# The default path for the job is the user's home directory,
# change directory to where the files are.
cd $PBS_O_WORKDIR

# Make sure that the output directory exists.
mkdir -p $OUTPUT_FILE

# Set inference model IR files using specified precision
MODELPATH=models/yolov3/${FP_MODEL}/frozen_darknet_yolov3_model.xml

# Run the Tiny YOLO V3 object detection code
python3 object_detection_demo_yolov3_async.py -m $MODELPATH \
-i $INPUT_FILE \
-o $OUTPUT_FILE \
-d $DEVICE \
-t $THRESHOLD \
-nireq $NUMREQUEST \
-nstreams $NUMSTREAMS \
-no_show \
--labels $LABELS
*************************************************************************/

0 Kudos
1 Reply
Esteban_D_Intel
Moderator
445 Views

Hello ahmetbtm ,

 

Thank you for submitting your question on this Intel® Community. 


 To better assist you, we recommend that you submit your question on the Intel® Developer Zone. 


 Please register, and create an account so that you can receive further troubleshooting support, and get access to useful documentation from the appropriate support team.

Intel® Developer Zone - Contact Page  


I hope this helps.


If you need any additional information, please submit a new question as this thread will no longer being monitored  

 

Esteban D.  

Intel Technical Support Technician   


0 Kudos
Reply