From 96c7213254c386110ddc35571aa9a65d2d496cc7 Mon Sep 17 00:00:00 2001 From: Gurwinder Singh Date: Sat, 28 Oct 2023 13:09:52 +0530 Subject: [PATCH] Update ResNet50_Inference.ipynb ONEAPI_ROOT to ONEAPI_INSTALL --- .../ResNet50_Inference.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AI-and-Analytics/Getting-Started-Samples/Intel_Extension_For_PyTorch_GettingStarted/ResNet50_Inference.ipynb b/AI-and-Analytics/Getting-Started-Samples/Intel_Extension_For_PyTorch_GettingStarted/ResNet50_Inference.ipynb index 1d2a896c6b..1744ec1a45 100755 --- a/AI-and-Analytics/Getting-Started-Samples/Intel_Extension_For_PyTorch_GettingStarted/ResNet50_Inference.ipynb +++ b/AI-and-Analytics/Getting-Started-Samples/Intel_Extension_For_PyTorch_GettingStarted/ResNet50_Inference.ipynb @@ -116,7 +116,7 @@ "source": [ "%%writefile run.sh\n", "#!/bin/bash\n", - "source $ONEAPI_ROOT/setvars.sh --force > /dev/null 2>&1\n", + "source $ONEAPI_INSTALL/setvars.sh --force > /dev/null 2>&1\n", "source activate pytorch\n", "echo \"########## Executing the run\"\n", "DNNL_VERBOSE=1 python resnet50_general_inference_script.py > infer_rn50_cpu.csv\n", @@ -182,7 +182,7 @@ "source": [ "%%writefile run.sh\n", "#!/bin/bash\n", - "source $ONEAPI_ROOT/setvars.sh --force > /dev/null 2>&1\n", + "source $ONEAPI_INSTALL/setvars.sh --force > /dev/null 2>&1\n", "source activate pytorch-gpu\n", "echo \"########## Executing the run\"\n", "DNNL_VERBOSE=1 python resnet50_general_inference_script_gpu.py > infer_rn50_gpu.csv\n",