File tree 7 files changed +68
-33
lines changed
AI-and-Analytics/Features-and-Functionality
IntelPython_GPU_dpnp_Genetic_Algorithm
IntelPython_XGBoost_Performance
IntelPython_daal4py_DistributedKMeans
IntelTensorFlow_Enabling_Auto_Mixed_Precision_for_TransferLearning
Intel_Extension_For_SKLearn_Performance_SVC_Adult
7 files changed +68
-33
lines changed Original file line number Diff line number Diff line change 9
9
"os" :[" linux" ],
10
10
"targetDevice" : [" GPU" ],
11
11
"ciTests" : {
12
- "linux" : [
12
+ "linux" : [
13
13
{
14
- "env" : [
14
+ "env" : [
15
15
" source /intel/oneapi/intelpython/bin/activate" ,
16
16
" conda activate base" ,
17
- " pip install -r requirements.txt"
17
+ " pip install uv" ,
18
+ " uv init" ,
19
+ " uv python pin $(which python)" ,
20
+ " uv venv --system-site-packages" ,
21
+ " uv add -r requirements.txt"
18
22
],
19
- "id" : " idp_ga_dpnp_py" ,
20
- "steps" : [
21
- " python IntelPython_GPU_dpnp_Genetic_Algorithm.py"
22
- ]
23
- }
23
+ "id" : " idp_ga_dpnp_py" ,
24
+ "steps" : [
25
+ " uv run python IntelPython_GPU_dpnp_Genetic_Algorithm.py"
26
+ ]
27
+ }
24
28
]
25
29
},
26
30
"expertise" : " Code Optimization"
Original file line number Diff line number Diff line change 1
1
###### Requirements ######
2
2
notebook
3
3
matplot
4
- xgboost == 0.81
4
+ xgboost == 0.82
5
5
scikit-learn
6
6
pandas
Original file line number Diff line number Diff line change 9
9
"os" :[" linux" ],
10
10
"targetDevice" : [" CPU" ],
11
11
"ciTests" : {
12
- "linux" : [
12
+ "linux" : [
13
13
{
14
- "id" : " idp_xgb_performance" ,
15
- "steps" : [
16
- " source /intel/oneapi/intelpython/bin/activate" ,
17
- " python IntelPython_XGBoost_Performance.py" ,
18
- " conda remove xgboost --y" ,
19
- " pip install -r requirements.txt" ,
20
- " python IntelPython_XGBoost_Performance.py"
21
- ]
22
- }
14
+ "env" : [
15
+ " source /intel/oneapi/intelpython/bin/activate" ,
16
+ " conda activate base"
17
+ ],
18
+ "id" : " idp_xgb_performance" ,
19
+ "steps" : [
20
+ " python IntelPython_XGBoost_Performance.py" ,
21
+ " pip install uv" ,
22
+ " uv init" ,
23
+ " uv python pin $(which python)" ,
24
+ " uv venv --system-site-packages" ,
25
+ " uv add -r requirements.txt" ,
26
+ " uv add numpy==1.26.4" ,
27
+ " uv run python IntelPython_XGBoost_Performance.py"
28
+ ]
29
+ }
23
30
]
24
31
},
25
32
"expertise" : " Code Optimization"
Original file line number Diff line number Diff line change 15
15
"env" : [
16
16
" source /intel/oneapi/intelpython/bin/activate" ,
17
17
" conda activate base" ,
18
- " pip install -r requirements.txt"
18
+ " pip install uv" ,
19
+ " uv init" ,
20
+ " uv python pin $(which python)" ,
21
+ " uv venv --system-site-packages" ,
22
+ " uv add -r requirements.txt" ,
23
+ " uv add numpy==1.26.4"
19
24
],
20
25
"id" : " idp_d4p_KM_Dist" ,
21
26
"steps" : [
22
- " mpirun -n 4 python ./IntelPython_daal4py_Distributed_Kmeans.py"
27
+ " uv run mpirun -n 4 python ./IntelPython_daal4py_Distributed_Kmeans.py"
23
28
]
24
29
}]
25
30
},
Original file line number Diff line number Diff line change 17
17
" apt-get update && apt-get install tensorflow-model-server" ,
18
18
" source /intel/oneapi/intelpython/bin/activate" ,
19
19
" conda activate tensorflow" ,
20
- " pip install -r requirements.txt --no-deps" ,
21
- " pip install tensorflow==2.15.0.post1" ,
22
- " pip install jupyter ipykernel" ,
23
- " python -m ipykernel install --user --name=tensorflow"
20
+ " pip install uv" ,
21
+ " uv init" ,
22
+ " uv python pin $(which python)" ,
23
+ " uv venv --system-site-packages" ,
24
+ " uv add -r requirements.txt" ,
25
+ " uv add numpy==1.26.4" ,
26
+ " uv add --dev ipykernel" ,
27
+ " uv run ipython kernel install --user --name tensorflow" ,
28
+ " pip install notebook"
24
29
],
25
30
"id" : " tensorflow_AMP_transfer_learning" ,
26
31
"steps" : [
Original file line number Diff line number Diff line change 10
10
"cpuInstructionSets" : [" AVX512" , " AMX" ],
11
11
"ciTests" : {
12
12
"linux" : [{
13
+ "env" : [
14
+ " source /intel/oneapi/intelpython/bin/activate" ,
15
+ " conda activate tensorflow" ,
16
+ " pip install uv" ,
17
+ " uv init" ,
18
+ " uv python pin $(which python)" ,
19
+ " uv venv --system-site-packages" ,
20
+ " uv add -r requirements.txt" ,
21
+ " uv add py-cpuinfo nbformat nbconvert" ,
22
+ " uv add --dev ipykernel" ,
23
+ " uv run ipython kernel install --user --name tensorflow" ,
24
+ " uv add notebook nbconvert"
25
+ ],
13
26
"id" : " intel llm bf16 infrence and fine-tuning" ,
14
27
"steps" : [
15
- " source activate tensorflow" ,
16
- " pip install -r requirements.txt" ,
17
- " python -m pip install py-cpuinfo" ,
18
- " python GPTJ_finetuning.py" ,
19
- " /opt/intel/oneapi/intelpython/latest/envs/tensorflow/bin/python -m ipykernel install --user --name=tensorflow" ,
20
- " python ci_test.py"
28
+ " uv run python GPTJ_finetuning.py" ,
29
+ " uv run python ci_test.py"
21
30
]
22
31
}]
23
32
},
Original file line number Diff line number Diff line change 13
13
"env" : [
14
14
" source /intel/oneapi/intelpython/bin/activate" ,
15
15
" conda activate base" ,
16
- " pip install -r requirements.txt"
16
+ " pip install uv" ,
17
+ " uv init" ,
18
+ " uv python pin $(which python)" ,
19
+ " uv venv --system-site-packages" ,
20
+ " uv add -r requirements.txt" ,
21
+ " uv add numpy==1.26.4"
17
22
],
18
23
"id" : " skelarnex_svc" ,
19
24
"steps" : [
20
- " python Intel_Extension_for_SKLearn_Performance_SVC_Adult.py"
25
+ " uv run python Intel_Extension_for_SKLearn_Performance_SVC_Adult.py"
21
26
]
22
27
}
23
28
]
You can’t perform that action at this time.
0 commit comments