Skip to content

Commit dc04841

Browse files
authored
Fixed typo, second try (oneapi-src#951)
parallel
1 parent 23e213a commit dc04841

File tree

1 file changed

+8
-8
lines changed
  • AI-and-Analytics/Jupyter/Numba_DPPY_Essentials_training

1 file changed

+8
-8
lines changed

AI-and-Analytics/Jupyter/Numba_DPPY_Essentials_training/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The purpose of this repo is to be the central aggregation, curation, and
44
distribution point for Juypter notebooks that are developed in support of
5-
Numba Data parallel python training programs. These initial hands-on exercises introduce you to concepts of Data Parallel Python. In addition, it familiarizes you how to execute on multiple devices using Data Parallel Python (DPPY), utilize Numba and Numba-DPPY to write paralle code on GPU.
5+
Numba Data parallel python training programs. These initial hands-on exercises introduce you to concepts of Data Parallel Python. In addition, it familiarizes you how to execute on multiple devices using Data Parallel Python (DPPY), utilize Numba and Numba-DPPY to write parallel code on GPU.
66

77
The Jupyter notebooks are tested and can be run on the Intel Devcloud. Below
88
are the steps to access these Jupyter notebooks on the Intel Devcloud:
@@ -15,7 +15,7 @@ are the steps to access these Jupyter notebooks on the Intel Devcloud:
1515
3. Type the following command to download the Numba Data parallel Python series of
1616
Jupyter notebooks into your devcloud account
1717
`/data/oneapi_workshop/get_jupyter_notebooks.sh`
18-
18+
1919
### Running the Jupyter Notebooks locally on a Linux machine OR WSL:
2020
1. Update your system:
2121
sudo apt update && sudo apt upgrade -y
@@ -29,20 +29,20 @@ are the steps to access these Jupyter notebooks on the Intel Devcloud:
2929
5. Enter:
3030
conda env list
3131
Note: if Conda not recognized enter
32-
source /opt/intel/oneapi/setvars.sh
32+
source /opt/intel/oneapi/setvars.sh
3333
6. Launch a terminal and enter:
3434
conda create –-clone base –-name <pick something> for example:
3535
conda create --clone base --name jupyter
3636
7. Conda env list:
37-
You should see two environments now. The * denotes the active environment.
37+
You should see two environments now. The * denotes the active environment.
3838
Activate the new environment:
39-
Conda activate jupyter
39+
Conda activate jupyter
4040
8. Install Jupyterlab:
41-
conda install -c conda-forge jupyterlab
41+
conda install -c conda-forge jupyterlab
4242
9. Clone the Intel oneAPI Samples Repository, Git will likely not be installed so to install it enter:
4343
sudo apt install git
44-
git clone https://github.com/oneapi-src/oneAPI-samples.git
45-
10. Launch JupyterLab by typing in "jupyter lab" in the terminal.
44+
git clone https://github.com/oneapi-src/oneAPI-samples.git
45+
10. Launch JupyterLab by typing in "jupyter lab" in the terminal.
4646
11. Make a note of the address printed on the terminal and paste it in the browser window.
4747
12. JupyterLab opens up and navigate to ~/oneAPI-samples/AI-and-Analytics/Jupyter/Numba_DPPY_Essentials_training and double click on "Welcome.ipynb" to get started.
4848

0 commit comments

Comments
 (0)