forked from ceciliapeng2011/toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.bat
More file actions
46 lines (30 loc) · 1.48 KB
/
Copy pathinit.bat
File metadata and controls
46 lines (30 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@REM ------------------------------------------------------------------------------------------
@REM network proxy
@REM
set https_proxy=http://proxy-dmz.intel.com:912
set http_proxy=http://proxy-dmz.intel.com:911
@REM set ftp_proxy=http://child-prc.intel.com:913/
@REM set "HF_ENDPOINT=https://hf-mirror.com"
set no_proxy=localhost,127.0.0.0/8,::1,https://github.com/*
@REM ------------------------------------------------------------------------------------------
@REM github account
@REM
git config --global user.email "cecilia.peng@intel.com"
git config --global user.name "ceciliapeng2011"
@REM ------------------------------------------------------------------------------------------
@REM global environments
@REM
set HOME=c:\ceciliapeng
@REM genai build
set OpenVINO_DIR=%HOME%\openvino\release_install\runtime
set TBB_DIR=%HOME%\openvino\temp\Windows_AMD64\tbb\bin
@REM ov env
set PYTHONPATH=%HOME%\openvino\release_install\python;%HOME%\openvino\tools\ovc;%HOME%\openvino\bin\intel64\Release\python
set OPENVINO_LIB_PATHS=%HOME%\openvino\release_install\runtime\bin\intel64\Release\;%HOME%\openvino\temp\Windows_AMD64\tbb\bin;%HOME%\openvino\bin\intel64\Release\
set PATH=%HOME%\openvino\tools\ovc;%HOME%\openvino\bin\intel64\Release;%HOME%\openvino\temp\Windows_AMD64\tbb\bin;%PATH%
@REM for aboutSHW build with onednn
set OV_BUILD_PATH=%HOME%\openvino\build
@REM CMC
set CM_FE_DIR=%HOME%\ComputeSDK_Windows_internal_2025_WW41\compiler\bin
%HOME%\openvino.venv\Scripts\activate
cd %HOME%