├── COPYRIGHT ├── .gitignore ├── cspell.json ├── pytest.ini ├── tutorials ├── README.md ├── poplar │ ├── README.md │ ├── tut1_variables │ │ ├── README.md │ │ ├── .gitignore │ │ ├── tests │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── test_tut1.py │ │ │ └── requirements.txt │ │ ├── start_here │ │ │ └── tut1.cpp │ │ └── complete │ │ │ ├── tut1_ipu_model_complete.cpp │ │ │ └── tut1_ipu_hardware_complete.cpp │ ├── tut3_vertices │ │ ├── .gitignore │ │ ├── README.md │ │ ├── tests │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── test_tut3.py │ │ │ └── requirements.txt │ │ ├── start_here │ │ │ ├── tut3.cpp │ │ │ └── tut3_codelets.cpp │ │ └── complete │ │ │ ├── tut3_codelets.cpp │ │ │ └── tut3_complete.cpp │ ├── tut4_profiling │ │ ├── README.md │ │ ├── .gitignore │ │ ├── tests │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── test_tut4.py │ │ │ └── requirements.txt │ │ ├── tut4_ipu_model.cpp │ │ ├── libpva │ │ │ ├── cpp_example.cpp │ │ │ └── python_example.py │ │ ├── tut4_ipu_hardware.cpp │ │ └── screenshots │ │ │ ├── PopVision_GA_liveness.png │ │ │ ├── PopVision_GA_memory.png │ │ │ ├── PopVision_GA_summary.png │ │ │ ├── PopVision_GA_execution.png │ │ │ ├── PopVision_GA_operations.png │ │ │ ├── PopVision_GA_program_tree.png │ │ │ ├── PopVision_GA_computation_graph.png │ │ │ └── PopVision_GA_liveness_2_reports.png │ ├── tut2_operations │ │ ├── .gitignore │ │ ├── README.md │ │ ├── tests │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── test_tut2.py │ │ │ └── requirements.txt │ │ ├── start_here │ │ │ └── tut2.cpp │ │ └── complete │ │ │ └── tut2_complete.cpp │ ├── tut5_matrix_vector │ │ ├── .gitignore │ │ ├── README.md │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── requirements.txt │ │ │ ├── test_tut5_complete.py │ │ │ └── test_tut5_ipu_hardware_complete.py │ │ ├── complete │ │ │ ├── Makefile │ │ │ ├── tut5_complete.cpp │ │ │ ├── matrix-mul-codelets.cpp │ │ │ └── tut5_ipu_hardware_complete.cpp │ │ └── start_here │ │ │ ├── Makefile │ │ │ ├── tut5.cpp │ │ │ └── matrix-mul-codelets.cpp │ └── tut6_matrix_vector_opt │ │ ├── Makefile │ │ ├── README.md │ │ ├── tut6.cpp │ │ ├── .gitignore │ │ ├── tests │ │ ├── README.md │ │ ├── test_tut6.py │ │ └── requirements.txt │ │ └── matrix-mul-codelets.cpp ├── popvision │ ├── README.md │ ├── libpva │ │ ├── README.md │ │ ├── walkthrough.py │ │ ├── requirements.txt │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── requirements.txt │ │ │ └── pytorch_test_tuto_libpva.py │ │ ├── walkthrough.ipynb │ │ ├── MemoryByTilePlot.png │ │ └── walkthrough_code_only.py │ ├── reading_pvti_files │ │ ├── .gitignore │ │ ├── README.md │ │ ├── get_data.sh │ │ ├── popart_mnist.py │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── requirements.txt │ │ │ └── test_tuto_read_pvti.py │ │ ├── walkthrough.py │ │ ├── requirements.txt │ │ ├── walkthrough.ipynb │ │ └── walkthrough_code_only.py │ ├── lightweight_profiling │ │ ├── README.md │ │ ├── tests │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── requirements.txt │ │ │ └── test_lightweight_profiling.py │ │ ├── examples │ │ │ ├── example_1.cpp │ │ │ ├── example_2.cpp │ │ │ ├── example_3.cpp │ │ │ └── example_3_a.cpp │ │ └── images │ │ │ └── program_tree.png │ └── system_analyser_instrumentation │ │ ├── README.md │ │ ├── .gitignore │ │ ├── get_data.sh │ │ ├── walkthrough.py │ │ ├── popart_mnist.py │ │ ├── requirements.txt │ │ ├── tests │ │ ├── README.md │ │ ├── requirements.txt │ │ └── test_tuto_SA_instrumentation.py │ │ ├── walkthrough.ipynb │ │ ├── screenshots │ │ ├── mnist.png │ │ ├── mnist_instrumented.png │ │ ├── mnist_instrumented_loss.png │ │ ├── mnist_instrumented_instant_events.png │ │ └── mnist_instrumented_loss_accuracy_cpuload.png │ │ ├── popart_mnist_complete.py │ │ └── walkthrough_code_only.py ├── popxl │ ├── VSCodeSetup.md │ ├── 4_pipelining │ │ ├── README.md │ │ ├── mnist.py │ │ ├── mnist.ipynb │ │ ├── requirements.txt │ │ ├── tests │ │ │ ├── requirements.txt │ │ │ └── test_popxl_pipelining.py │ │ └── images │ │ │ ├── recomputation.png │ │ │ ├── pipelining_parallel.png │ │ │ └── inefficient_pipeline.png │ ├── 1_basic_concepts │ │ ├── mnist.py │ │ ├── README.md │ │ ├── mnist.ipynb │ │ ├── requirements.txt │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── test_tut1.py │ │ │ └── requirements.txt │ │ ├── mnist_template.py │ │ └── images │ │ │ ├── workflow.png │ │ │ └── module_graph_bgraph.png │ ├── 2_custom_optimiser │ │ ├── README.md │ │ ├── mnist.py │ │ ├── mnist.ipynb │ │ ├── requirements.txt │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── requirements.txt │ │ │ └── test_popxl_custom_optimiser.py │ │ └── mnist_template.py │ ├── 3_data_parallelism │ │ ├── README.md │ │ ├── mnist.py │ │ ├── mnist.ipynb │ │ ├── requirements.txt │ │ ├── images │ │ │ ├── autodiff.png │ │ │ ├── autodiff_transf.png │ │ │ ├── backward_auto_accum.png │ │ │ └── data_parallel_training.png │ │ └── tests │ │ │ ├── requirements.txt │ │ │ └── test_popxl_data_parallelism.py │ ├── 6_phased_execution │ │ ├── README.md │ │ ├── mnist.py │ │ ├── mnist.ipynb │ │ ├── requirements.txt │ │ ├── images │ │ │ ├── phased.jpg │ │ │ ├── phase_diagram.jpg │ │ │ ├── remote_buffer.jpg │ │ │ ├── x_dx_buffers.png │ │ │ ├── batch_serialisation.jpg │ │ │ └── batch_serialisation_grad.jpg │ │ └── tests │ │ │ ├── requirements.txt │ │ │ └── test_popxl_phased_execution.py │ └── 5_remote_variables_and_rts │ │ ├── mnist.py │ │ ├── README.md │ │ ├── mnist.ipynb │ │ ├── images │ │ ├── rts.png │ │ ├── ipu_links.png │ │ ├── mem_arch.png │ │ ├── transpose.png │ │ ├── collectives.png │ │ ├── ipu_indices.png │ │ ├── remote_buffers.jpg │ │ ├── variables_tp_dp.png │ │ └── program_structure.png │ │ ├── requirements.txt │ │ ├── replica_groupings.ipynb │ │ └── tests │ │ ├── requirements.txt │ │ └── test_popxl_remote_variables.py ├── pytorch │ ├── basics │ │ ├── README.md │ │ ├── walkthrough.py │ │ ├── requirements.txt │ │ ├── static │ │ │ ├── loop.jpg │ │ │ ├── stack.jpg │ │ │ ├── classifier.pth │ │ │ ├── output_14_0.png │ │ │ ├── output_48_1.png │ │ │ ├── output_61_0.png │ │ │ └── confusion_matrix.png │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── requirements.txt │ │ │ └── test_tuto_basics.py │ │ ├── images │ │ │ └── trousers.jpg │ │ ├── walkthrough.ipynb │ │ └── walkthrough_code_only.py │ ├── pipelining │ │ ├── README.md │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── test_mnist.py │ │ │ └── requirements.txt │ │ ├── walkthrough.py │ │ ├── mnist_pipeline.py │ │ ├── requirements.txt │ │ ├── walkthrough.ipynb │ │ ├── static │ │ │ ├── pipelining.png │ │ │ ├── pipeline-figure.png │ │ │ ├── stages-poptorch.jpeg │ │ │ └── pipelined-execution.png │ │ └── walkthrough_code_only.py │ ├── finetuning_bert │ │ ├── LICENSE │ │ ├── README.md │ │ ├── static │ │ │ ├── bert.png │ │ │ ├── rts.png │ │ │ ├── squad.png │ │ │ ├── pipelining.png │ │ │ ├── partitioning.jpg │ │ │ ├── recomputation.png │ │ │ └── bert-pipelining-pod4.png │ │ ├── requirements.txt │ │ ├── Fine-tuning-BERT.py │ │ ├── Fine-tuning-BERT.ipynb │ │ ├── squad_preprocessing.py │ │ └── tests │ │ │ ├── requirements.txt │ │ │ └── test_finetuning_notebook.py │ ├── mixed_precision │ │ ├── README.md │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── requirements.txt │ │ │ └── test_tuto_mixed_precision.py │ │ ├── walkthrough.py │ │ ├── requirements.txt │ │ ├── walkthrough.ipynb │ │ ├── walkthrough_code_only.py │ │ └── static │ │ │ └── MemoryDiffReport.png │ ├── observing_tensors │ │ ├── README.md │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── requirements.txt │ │ │ └── test_tuto_observing_tensors.py │ │ ├── requirements.txt │ │ ├── anchor_tensor_example.py │ │ └── static │ │ │ └── GradientHistogram.png │ ├── vit_model_training │ │ ├── README.md │ │ ├── walkthrough.py │ │ ├── requirements.txt │ │ ├── walkthrough.ipynb │ │ ├── static │ │ │ ├── output_26_0.png │ │ │ └── output_46_0.png │ │ ├── tests │ │ │ ├── requirements.txt │ │ │ └── test_vit_model.py │ │ └── walkthrough_code_only.py │ └── efficient_data_loading │ │ ├── README.md │ │ ├── tests │ │ ├── README.md │ │ ├── requirements.txt │ │ └── test_tuto_data_loading.py │ │ ├── walkthrough.py │ │ ├── static │ │ ├── replica.png │ │ ├── pipeline.png │ │ └── iterations.png │ │ ├── walkthrough.ipynb │ │ ├── tuto_data_loading.py │ │ └── walkthrough_code_only.py ├── tensorflow2 │ ├── keras │ │ ├── LICENSE │ │ ├── demo.py │ │ ├── README.md │ │ ├── demo.ipynb │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── test_demo.py │ │ │ ├── requirements.txt │ │ │ ├── test_complete.py │ │ │ └── test_completed_demos.py │ │ ├── demo_code_only.py │ │ ├── demo_starting_point.py │ │ ├── completed_example │ │ │ ├── main.py │ │ │ ├── model.py │ │ │ └── utils.py │ │ ├── pipeline_time_seq_training.png │ │ └── completed_demos │ │ │ ├── completed_demo_ipu.py │ │ │ ├── completed_demo_faster.py │ │ │ ├── completed_demo_pipelining.py │ │ │ └── completed_demo_replicated.py │ ├── tensorboard │ │ ├── demo.py │ │ ├── README.md │ │ ├── demo.ipynb │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── requirements.txt │ │ │ └── test_tensorboard.py │ │ ├── demo_code_only.py │ │ ├── requirements.txt │ │ └── figures │ │ │ ├── NavBar.png │ │ │ ├── conv_0.png │ │ │ ├── BlankSession.png │ │ │ ├── ConvFilters.png │ │ │ ├── ExampleScreen.png │ │ │ ├── MnistExamples.png │ │ │ ├── conv_0_dists.png │ │ │ ├── eval_accuracy.png │ │ │ ├── TimeSeriesPage.png │ │ │ ├── epoch_accuracy.png │ │ │ ├── conv_0_histograms.png │ │ │ ├── model_graph_page.png │ │ │ └── model_graph_pipeline_expanded.png │ └── infeed_outfeed │ │ ├── LICENSE │ │ ├── README.md │ │ ├── tests │ │ ├── README.md │ │ ├── requirements.txt │ │ ├── test_mnist_with_feeds.py │ │ └── test_mnist_without_feeds.py │ │ ├── execution_trace │ │ ├── with_feeds.png │ │ └── without_feeds.png │ │ └── completed_code │ │ ├── mnist_with_feeds.py │ │ └── mnist_without_feeds.py └── standard_tools │ ├── using_jupyter │ ├── README.md │ └── screenshots │ │ ├── login.png │ │ ├── not_found.png │ │ ├── jupyter_server.png │ │ └── open_notebook.png │ └── using_vscode │ ├── README.md │ └── img │ ├── Folder.png │ ├── ssh-list.png │ ├── prep-debug.png │ ├── extension-ssh.png │ ├── launch-json.png │ ├── python │ ├── jupyter.png │ ├── popart-fail.png │ ├── code-complete.png │ ├── documentation.png │ ├── visual-debugger.png │ ├── choose-interpreter.png │ ├── interpreter │ │ ├── enter.png │ │ ├── select.png │ │ ├── select-interpreter-cmd.png │ │ └── select-interpreter-gui.png │ ├── popart-breakpoint.png │ ├── popart-prep-debug.png │ ├── choose-interpreter-2.png │ ├── documentation-hello.png │ ├── errors │ │ ├── settings-env.png │ │ ├── popart-modulenotfound.png │ │ ├── poptorch-importerror.png │ │ └── popart-modulenotfound-1.png │ ├── popart-autocomplete.png │ ├── popart-documentation.png │ ├── popart-prep-debug-1.png │ └── pytorch │ │ ├── debug-library.png │ │ └── debug-justmycode.png │ ├── ssh-connecting.png │ ├── extension-python.png │ ├── notebook │ ├── working.png │ └── new-notebook.png │ └── C++-debugger │ ├── button.png │ ├── 3-run-python.png │ ├── 1-debug-points.png │ ├── 4-port-forward.png │ ├── new-launch-config.png │ ├── 2-instrument-python.png │ ├── 5-launch-gdb-server.png │ ├── 7-step-through-code.png │ ├── function-breakpoint.png │ └── 6-attach-to-gdb-server.png ├── utils ├── __init__.py ├── lint │ ├── __init__.py │ ├── codespell_ignore.txt │ ├── linters │ │ ├── __init__.py │ │ ├── url_linter.py │ │ ├── fstring_linter.py │ │ ├── pytest_linter.py │ │ ├── copyright_linter.py │ │ └── trademark_linter.py │ ├── __phutil_library_init__.php │ ├── __phutil_library_map__.php │ └── precommit │ │ ├── PreCommitLinter.php │ │ └── PreCommitLintEngine.php ├── resources │ ├── get.py │ └── get_test_resource.sh └── tutorials_tests │ ├── README.md │ ├── __init__.py │ ├── assert_util.py │ ├── resource_util.py │ ├── testing_util.py │ ├── test_lint │ ├── __init__.py │ └── test_trademark_lint.py │ ├── urls_test │ ├── __init__.py │ ├── test_urls.py │ ├── link_parsers.py │ ├── requirements.txt │ └── test_link_parsers.py │ ├── utils_tests │ ├── test_utils.py │ └── requirements.txt │ ├── copyright_test │ └── test_copyright.py │ └── modern_python_tests │ ├── __init__.py │ ├── test_must_use_pytest.py │ └── test_must_use_fstrings.py ├── blogs_code ├── README.md ├── gnns │ ├── README.md │ ├── graph_packing.ipynb │ └── graph_packing_files │ │ ├── graph_packing_11_1.png │ │ ├── graph_packing_11_2.png │ │ ├── graph_packing_11_3.png │ │ ├── graph_packing_11_4.png │ │ ├── graph_packing_12_1.png │ │ ├── graph_packing_12_2.png │ │ ├── graph_packing_12_3.png │ │ ├── graph_packing_12_4.png │ │ ├── graph_packing_14_1.png │ │ ├── graph_packing_14_10.png │ │ ├── graph_packing_14_11.png │ │ ├── graph_packing_14_13.png │ │ ├── graph_packing_14_14.png │ │ ├── graph_packing_14_2.png │ │ ├── graph_packing_14_4.png │ │ ├── graph_packing_14_5.png │ │ ├── graph_packing_14_7.png │ │ ├── graph_packing_14_8.png │ │ └── graph_packing_30_0.png └── packedBERT │ ├── README.md │ ├── lpfhp.py │ ├── nnlshp.py │ ├── spfhp.py │ ├── ennlshp.py │ └── histograms.py ├── videos_code └── README.md ├── .pre-commit-config.yaml ├── feature_examples ├── README.md ├── popart │ ├── README.md │ ├── callbacks │ │ ├── README.md │ │ ├── callbacks.py │ │ ├── requirements.txt │ │ └── test_callbacks.py │ ├── pipelining │ │ ├── README.md │ │ ├── pipelining.py │ │ ├── requirements.txt │ │ └── test_pipelining.py │ ├── sharding │ │ ├── README.md │ │ ├── multi_ipu.py │ │ ├── requirements.txt │ │ └── test_multi_ipu_popart.py │ ├── recomputing │ │ ├── README.md │ │ ├── recomputing.py │ │ ├── requirements.txt │ │ └── test_recomputing.py │ ├── custom_operators │ │ ├── README.md │ │ ├── requirements.txt │ │ ├── cube_op_example │ │ │ ├── Makefile │ │ │ ├── cube_fn_custom_op.cpp │ │ │ └── tests │ │ │ │ ├── requirements.txt │ │ │ │ └── test_cube_op.py │ │ └── leaky_relu_example │ │ │ ├── Makefile │ │ │ ├── test_lrelu.py │ │ │ ├── requirements.txt │ │ │ ├── run_leaky_relu.py │ │ │ └── leaky_relu_custom_op.cpp │ └── phased_execution │ │ ├── README.md │ │ ├── requirements.txt │ │ ├── phased_execution.py │ │ └── tests │ │ ├── requirements.txt │ │ └── test_phased_execution.py ├── poplar │ ├── README.md │ ├── prefetch │ │ ├── Makefile │ │ ├── .gitignore │ │ ├── README.md │ │ ├── prefetch.cpp │ │ ├── requirements.txt │ │ ├── test_prefetch.py │ │ └── required_apt_packages.txt │ └── advanced_example │ │ ├── Makefile │ │ ├── main.cpp │ │ ├── utils.h │ │ ├── .gitignore │ │ ├── README.md │ │ ├── codelets.cpp │ │ ├── tests │ │ ├── requirements.txt │ │ └── test_example.py │ │ └── required_apt_packages.txt ├── pytorch │ ├── README.md │ ├── custom_op │ │ ├── README.md │ │ ├── requirements.txt │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── requirements.txt │ │ │ └── test_poptorch_custom_op.py │ │ └── poptorch_custom_op.py │ ├── octconv │ │ ├── README.md │ │ ├── requirements.txt │ │ ├── test_octconv.py │ │ └── octconv_example.py │ └── popdist │ │ ├── README.md │ │ ├── requirements.txt │ │ ├── tests │ │ ├── README.md │ │ ├── requirements.txt │ │ └── test_popdist_training.py │ │ └── popdist_training.py └── tensorflow2 │ ├── README.md │ ├── popdist │ ├── README.md │ ├── tests │ │ ├── README.md │ │ ├── requirements.txt │ │ └── test_popdist_example.py │ ├── popdist_training.py │ └── popdist_inference.py │ ├── embeddings │ ├── README.md │ ├── imdb.py │ ├── test_imdb.py │ ├── requirements.txt │ ├── imdb_sequential.py │ ├── imdb_single_ipu.py │ └── imdb_single_ipu_sequential.py │ ├── ipu_estimator │ ├── data.py │ ├── model.py │ ├── utils.py │ ├── README.md │ ├── requirements.txt │ ├── test_cifar10.py │ ├── cifar10_ipu_estimator.py │ ├── cifar10_ipu_estimator_replica.py │ └── cifar10_ipu_pipeline_estimator.py │ ├── inspecting_tensors │ ├── mnist.py │ ├── README.md │ ├── requirements.txt │ ├── outfeed_layers.py │ ├── outfeed_wrapper.py │ ├── outfeed_callback.py │ ├── outfeed_optimizer.py │ └── tests │ │ ├── test_mnist.py │ │ └── test_outfeed_optimizer.py │ └── recomputation_checkpoints │ ├── README.md │ ├── recompute_lstm.py │ ├── tests │ ├── requirements.txt │ └── test_recompute_lstm.py │ └── static │ ├── LSTM_7_checkpoints.png │ └── LSTM_no_checkpoints.png ├── tech_notes_code ├── README.md ├── recompilation │ ├── README.md │ ├── .gitignore │ └── tensorflow2 │ │ ├── tests │ │ ├── README.md │ │ ├── test_tf2.py │ │ └── requirements.txt │ │ └── TF2_recompilation.py ├── available_memory │ ├── sweep.py │ ├── README.md │ ├── pytorch_demo.py │ ├── requirements.txt │ └── tests │ │ └── pytorch │ │ └── test_all.py └── model_parallelism │ ├── README.md │ └── tensorflow2_code │ ├── inference_pipelining.py │ ├── tests │ ├── requirements.txt │ └── test_model_parallelism_tf2.py │ ├── training_pipelining.py │ ├── training_pipelining_sequential.py │ ├── inference_pipelining_sequential.py │ └── inference_pipelining_set_pipeline_stage.py ├── simple_applications ├── README.md ├── poplar │ └── mnist │ │ ├── Makefile │ │ ├── mnist.h │ │ ├── .gitignore │ │ ├── README.md │ │ ├── get_data.sh │ │ ├── mnist.cpp │ │ ├── tests │ │ ├── README.md │ │ ├── requirements.txt │ │ └── test_poplar_mnist.py │ │ └── regression-demo.cpp ├── popart │ └── mnist │ │ ├── README.md │ │ ├── get_data.sh │ │ ├── popart_mnist.py │ │ ├── requirements.txt │ │ ├── popart_mnist_conv.py │ │ ├── test_popart_mnist.py │ │ └── test_popart_mnist_conv.py ├── pytorch │ ├── bert │ │ ├── README.md │ │ ├── context.txt │ │ ├── questions.txt │ │ ├── requirements.txt │ │ ├── bert_inference.py │ │ └── test_bert_inference.py │ └── mnist │ │ ├── README.md │ │ ├── metrics.py │ │ ├── mnist_poptorch.py │ │ ├── requirements.txt │ │ ├── mnist_poptorch.ipynb │ │ ├── tests │ │ ├── test_mnist.py │ │ └── requirements.txt │ │ └── mnist_poptorch_code_only.py └── tensorflow2 │ └── mnist │ ├── mnist.py │ ├── README.md │ ├── mnist.ipynb │ ├── requirements.txt │ ├── mnist_code_only.py │ └── tests │ ├── test_mnist.py │ └── requirements.txt ├── kernel_benchmarks └── popart │ ├── README.md │ ├── conv.py │ ├── lstm.py │ ├── benchmark.py │ ├── requirements.txt │ └── test_lstm_popart.py ├── README.md └── LICENSE /COPYRIGHT: -------------------------------------------------------------------------------- 1 | Unless otherwise specified all files in the repository are Copyright 2019 Graphcore Ltd. 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/.gitignore 3 | -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/cspell.json 3 | -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/pytest.ini 3 | -------------------------------------------------------------------------------- /tutorials/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/README.md 3 | -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/__init__.py 3 | -------------------------------------------------------------------------------- /blogs_code/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/README.md 3 | -------------------------------------------------------------------------------- /videos_code/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/videos_code/README.md 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/.pre-commit-config.yaml 3 | -------------------------------------------------------------------------------- /utils/lint/__init__.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/lint/__init__.py 3 | -------------------------------------------------------------------------------- /utils/resources/get.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/resources/get.py 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/README.md 3 | -------------------------------------------------------------------------------- /tech_notes_code/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/README.md 3 | -------------------------------------------------------------------------------- /tutorials/poplar/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/README.md 3 | -------------------------------------------------------------------------------- /simple_applications/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popvision/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/README.md 3 | -------------------------------------------------------------------------------- /blogs_code/packedBERT/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/packedBERT/README.md 3 | -------------------------------------------------------------------------------- /blogs_code/packedBERT/lpfhp.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/packedBERT/lpfhp.py 3 | -------------------------------------------------------------------------------- /blogs_code/packedBERT/nnlshp.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/packedBERT/nnlshp.py 3 | -------------------------------------------------------------------------------- /blogs_code/packedBERT/spfhp.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/packedBERT/spfhp.py 3 | -------------------------------------------------------------------------------- /tutorials/popxl/VSCodeSetup.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/VSCodeSetup.md 3 | -------------------------------------------------------------------------------- /utils/lint/codespell_ignore.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/lint/codespell_ignore.txt 3 | -------------------------------------------------------------------------------- /utils/lint/linters/__init__.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/lint/linters/__init__.py 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/README.md 3 | -------------------------------------------------------------------------------- /blogs_code/packedBERT/ennlshp.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/packedBERT/ennlshp.py 3 | -------------------------------------------------------------------------------- /feature_examples/popart/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/README.md 3 | -------------------------------------------------------------------------------- /kernel_benchmarks/popart/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/kernel_benchmarks/popart/README.md 3 | -------------------------------------------------------------------------------- /kernel_benchmarks/popart/conv.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/kernel_benchmarks/popart/conv.py 3 | -------------------------------------------------------------------------------- /kernel_benchmarks/popart/lstm.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/kernel_benchmarks/popart/lstm.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/basics/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/basics/README.md 3 | -------------------------------------------------------------------------------- /utils/lint/linters/url_linter.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/lint/linters/url_linter.py 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/__init__.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/__init__.py 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing.ipynb 3 | -------------------------------------------------------------------------------- /blogs_code/packedBERT/histograms.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/packedBERT/histograms.py 3 | -------------------------------------------------------------------------------- /tutorials/popvision/libpva/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/libpva/README.md 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/LICENSE: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/LICENSE 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/demo.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/demo.py 3 | -------------------------------------------------------------------------------- /utils/lint/linters/fstring_linter.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/lint/linters/fstring_linter.py 3 | -------------------------------------------------------------------------------- /utils/lint/linters/pytest_linter.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/lint/linters/pytest_linter.py 3 | -------------------------------------------------------------------------------- /utils/resources/get_test_resource.sh: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/resources/get_test_resource.sh 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/assert_util.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/assert_util.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/README.md 3 | -------------------------------------------------------------------------------- /kernel_benchmarks/popart/benchmark.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/kernel_benchmarks/popart/benchmark.py 3 | -------------------------------------------------------------------------------- /tech_notes_code/recompilation/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/recompilation/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popxl/4_pipelining/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/4_pipelining/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popxl/4_pipelining/mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/4_pipelining/mnist.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/basics/walkthrough.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/basics/walkthrough.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/pipelining/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/pipelining/README.md 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/README.md 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/demo.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/demo.ipynb 3 | -------------------------------------------------------------------------------- /utils/lint/__phutil_library_init__.php: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/lint/__phutil_library_init__.php 3 | -------------------------------------------------------------------------------- /utils/lint/__phutil_library_map__.php: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/lint/__phutil_library_map__.php 3 | -------------------------------------------------------------------------------- /utils/lint/linters/copyright_linter.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/lint/linters/copyright_linter.py 3 | -------------------------------------------------------------------------------- /utils/lint/linters/trademark_linter.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/lint/linters/trademark_linter.py 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/resource_util.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/resource_util.py 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/testing_util.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/testing_util.py 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/prefetch/Makefile: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/prefetch/Makefile 3 | -------------------------------------------------------------------------------- /kernel_benchmarks/popart/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/kernel_benchmarks/popart/requirements.txt 3 | -------------------------------------------------------------------------------- /simple_applications/poplar/mnist/Makefile: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/poplar/mnist/Makefile 3 | -------------------------------------------------------------------------------- /simple_applications/poplar/mnist/mnist.h: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/poplar/mnist/mnist.h 3 | -------------------------------------------------------------------------------- /tech_notes_code/available_memory/sweep.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/available_memory/sweep.py 3 | -------------------------------------------------------------------------------- /tech_notes_code/recompilation/.gitignore: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/recompilation/.gitignore 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut1_variables/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut1_variables/README.md 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut3_vertices/.gitignore: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut3_vertices/.gitignore 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut3_vertices/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut3_vertices/README.md 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popvision/libpva/walkthrough.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/libpva/walkthrough.py 3 | -------------------------------------------------------------------------------- /tutorials/popxl/1_basic_concepts/mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/1_basic_concepts/mnist.py 3 | -------------------------------------------------------------------------------- /tutorials/popxl/4_pipelining/mnist.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/4_pipelining/mnist.ipynb 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/basics/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/basics/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/basics/static/loop.jpg: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/basics/static/loop.jpg 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/basics/static/stack.jpg: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/basics/static/stack.jpg 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/basics/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/basics/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/finetuning_bert/LICENSE: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/finetuning_bert/LICENSE 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/demo.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/demo.py 3 | -------------------------------------------------------------------------------- /utils/lint/precommit/PreCommitLinter.php: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/lint/precommit/PreCommitLinter.php 3 | -------------------------------------------------------------------------------- /feature_examples/popart/callbacks/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/callbacks/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/popart/pipelining/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/pipelining/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/popart/sharding/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/sharding/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/prefetch/.gitignore: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/prefetch/.gitignore 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/prefetch/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/prefetch/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/custom_op/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/custom_op/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/octconv/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/octconv/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/popdist/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/popdist/README.md 3 | -------------------------------------------------------------------------------- /kernel_benchmarks/popart/test_lstm_popart.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/kernel_benchmarks/popart/test_lstm_popart.py 3 | -------------------------------------------------------------------------------- /simple_applications/popart/mnist/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/popart/mnist/README.md 3 | -------------------------------------------------------------------------------- /simple_applications/popart/mnist/get_data.sh: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/popart/mnist/get_data.sh 3 | -------------------------------------------------------------------------------- /simple_applications/poplar/mnist/.gitignore: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/poplar/mnist/.gitignore 3 | -------------------------------------------------------------------------------- /simple_applications/poplar/mnist/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/poplar/mnist/README.md 3 | -------------------------------------------------------------------------------- /simple_applications/poplar/mnist/get_data.sh: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/poplar/mnist/get_data.sh 3 | -------------------------------------------------------------------------------- /simple_applications/poplar/mnist/mnist.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/poplar/mnist/mnist.cpp 3 | -------------------------------------------------------------------------------- /simple_applications/pytorch/bert/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/pytorch/bert/README.md 3 | -------------------------------------------------------------------------------- /simple_applications/pytorch/bert/context.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/pytorch/bert/context.txt 3 | -------------------------------------------------------------------------------- /simple_applications/pytorch/mnist/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/pytorch/mnist/README.md 3 | -------------------------------------------------------------------------------- /simple_applications/pytorch/mnist/metrics.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/pytorch/mnist/metrics.py 3 | -------------------------------------------------------------------------------- /tech_notes_code/available_memory/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/available_memory/README.md 3 | -------------------------------------------------------------------------------- /tech_notes_code/model_parallelism/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/model_parallelism/README.md 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut1_variables/.gitignore: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut1_variables/.gitignore 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut2_operations/.gitignore: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut2_operations/.gitignore 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut2_operations/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut2_operations/README.md 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/.gitignore: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/.gitignore 3 | -------------------------------------------------------------------------------- /tutorials/popvision/libpva/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/libpva/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popvision/libpva/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/libpva/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popvision/libpva/walkthrough.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/libpva/walkthrough.ipynb 3 | -------------------------------------------------------------------------------- /tutorials/popxl/1_basic_concepts/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/1_basic_concepts/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popxl/1_basic_concepts/mnist.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/1_basic_concepts/mnist.ipynb 3 | -------------------------------------------------------------------------------- /tutorials/popxl/2_custom_optimiser/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/2_custom_optimiser/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popxl/2_custom_optimiser/mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/2_custom_optimiser/mnist.py 3 | -------------------------------------------------------------------------------- /tutorials/popxl/3_data_parallelism/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/3_data_parallelism/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popxl/3_data_parallelism/mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/3_data_parallelism/mnist.py 3 | -------------------------------------------------------------------------------- /tutorials/popxl/6_phased_execution/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/6_phased_execution/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popxl/6_phased_execution/mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/6_phased_execution/mnist.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/basics/images/trousers.jpg: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/basics/images/trousers.jpg 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/basics/walkthrough.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/basics/walkthrough.ipynb 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/finetuning_bert/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/finetuning_bert/README.md 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/mixed_precision/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/mixed_precision/README.md 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/pipelining/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/pipelining/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/pipelining/walkthrough.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/pipelining/walkthrough.py 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/infeed_outfeed/LICENSE: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/infeed_outfeed/LICENSE 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/README.md 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/demo.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/demo.ipynb 3 | -------------------------------------------------------------------------------- /utils/lint/precommit/PreCommitLintEngine.php: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/lint/precommit/PreCommitLintEngine.php 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/test_lint/__init__.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/test_lint/__init__.py 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/urls_test/__init__.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/urls_test/__init__.py 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/urls_test/test_urls.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/urls_test/test_urls.py 3 | -------------------------------------------------------------------------------- /feature_examples/popart/callbacks/callbacks.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/callbacks/callbacks.py 3 | -------------------------------------------------------------------------------- /feature_examples/popart/recomputing/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/recomputing/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/popart/sharding/multi_ipu.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/sharding/multi_ipu.py 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/prefetch/prefetch.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/prefetch/prefetch.cpp 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/popdist/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/popdist/README.md 3 | -------------------------------------------------------------------------------- /simple_applications/pytorch/bert/questions.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/pytorch/bert/questions.txt 3 | -------------------------------------------------------------------------------- /simple_applications/tensorflow2/mnist/mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/tensorflow2/mnist/mnist.py 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut1_variables/tests/Makefile: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut1_variables/tests/Makefile 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut3_vertices/tests/Makefile: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut3_vertices/tests/Makefile 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut3_vertices/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut3_vertices/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/tests/Makefile: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/tests/Makefile 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut5_matrix_vector/.gitignore: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut5_matrix_vector/.gitignore 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut5_matrix_vector/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut5_matrix_vector/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popxl/2_custom_optimiser/mnist.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/2_custom_optimiser/mnist.ipynb 3 | -------------------------------------------------------------------------------- /tutorials/popxl/3_data_parallelism/mnist.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/3_data_parallelism/mnist.ipynb 3 | -------------------------------------------------------------------------------- /tutorials/popxl/4_pipelining/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/4_pipelining/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popxl/6_phased_execution/mnist.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/6_phased_execution/mnist.ipynb 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/basics/static/classifier.pth: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/basics/static/classifier.pth 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/observing_tensors/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/observing_tensors/README.md 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/pipelining/mnist_pipeline.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/pipelining/mnist_pipeline.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/pipelining/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/pipelining/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/pipelining/walkthrough.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/pipelining/walkthrough.ipynb 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/vit_model_training/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/vit_model_training/README.md 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/infeed_outfeed/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/infeed_outfeed/README.md 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/demo_code_only.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/demo_code_only.py 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/tests/test_demo.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/tests/test_demo.py 3 | -------------------------------------------------------------------------------- /feature_examples/popart/pipelining/pipelining.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/pipelining/pipelining.py 3 | -------------------------------------------------------------------------------- /feature_examples/popart/sharding/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/sharding/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/advanced_example/Makefile: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/advanced_example/Makefile 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/advanced_example/main.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/advanced_example/main.cpp 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/advanced_example/utils.h: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/advanced_example/utils.h 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/prefetch/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/prefetch/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/prefetch/test_prefetch.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/prefetch/test_prefetch.py 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/octconv/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/octconv/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/octconv/test_octconv.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/octconv/test_octconv.py 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/popdist/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/popdist/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/popdist/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/popdist/tests/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/embeddings/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/embeddings/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/embeddings/imdb.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/embeddings/imdb.py 3 | -------------------------------------------------------------------------------- /simple_applications/popart/mnist/popart_mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/popart/mnist/popart_mnist.py 3 | -------------------------------------------------------------------------------- /simple_applications/popart/mnist/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/popart/mnist/requirements.txt 3 | -------------------------------------------------------------------------------- /simple_applications/poplar/mnist/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/poplar/mnist/tests/README.md 3 | -------------------------------------------------------------------------------- /simple_applications/pytorch/bert/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/pytorch/bert/requirements.txt 3 | -------------------------------------------------------------------------------- /simple_applications/tensorflow2/mnist/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/tensorflow2/mnist/README.md 3 | -------------------------------------------------------------------------------- /simple_applications/tensorflow2/mnist/mnist.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/tensorflow2/mnist/mnist.ipynb 3 | -------------------------------------------------------------------------------- /tech_notes_code/available_memory/pytorch_demo.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/available_memory/pytorch_demo.py 3 | -------------------------------------------------------------------------------- /tech_notes_code/available_memory/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/available_memory/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut1_variables/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut1_variables/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut2_operations/tests/Makefile: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut2_operations/tests/Makefile 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut2_operations/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut2_operations/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut3_vertices/tests/test_tut3.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut3_vertices/tests/test_tut3.py 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut6_matrix_vector_opt/Makefile: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut6_matrix_vector_opt/Makefile 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut6_matrix_vector_opt/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut6_matrix_vector_opt/README.md 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut6_matrix_vector_opt/tut6.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut6_matrix_vector_opt/tut6.cpp 3 | -------------------------------------------------------------------------------- /tutorials/popvision/libpva/MemoryByTilePlot.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/libpva/MemoryByTilePlot.png 3 | -------------------------------------------------------------------------------- /tutorials/popvision/libpva/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/libpva/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popvision/reading_pvti_files/.gitignore: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/reading_pvti_files/.gitignore 3 | -------------------------------------------------------------------------------- /tutorials/popvision/reading_pvti_files/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/reading_pvti_files/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popxl/1_basic_concepts/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/1_basic_concepts/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popxl/1_basic_concepts/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/1_basic_concepts/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/basics/static/output_14_0.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/basics/static/output_14_0.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/basics/static/output_48_1.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/basics/static/output_48_1.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/basics/static/output_61_0.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/basics/static/output_61_0.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/basics/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/basics/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/basics/walkthrough_code_only.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/basics/walkthrough_code_only.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/finetuning_bert/static/bert.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/finetuning_bert/static/bert.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/finetuning_bert/static/rts.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/finetuning_bert/static/rts.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/mixed_precision/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/mixed_precision/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/mixed_precision/walkthrough.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/mixed_precision/walkthrough.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/pipelining/tests/test_mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/pipelining/tests/test_mnist.py 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_jupyter/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_jupyter/README.md 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/README.md 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/tests/README.md 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/urls_test/link_parsers.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/urls_test/link_parsers.py 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/urls_test/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/urls_test/requirements.txt 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/utils_tests/test_utils.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/utils_tests/test_utils.py 3 | -------------------------------------------------------------------------------- /feature_examples/popart/callbacks/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/callbacks/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/popart/callbacks/test_callbacks.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/callbacks/test_callbacks.py 3 | -------------------------------------------------------------------------------- /feature_examples/popart/custom_operators/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/custom_operators/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/popart/phased_execution/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/phased_execution/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/popart/pipelining/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/pipelining/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/popart/recomputing/recomputing.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/recomputing/recomputing.py 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/advanced_example/.gitignore: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/advanced_example/.gitignore 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/advanced_example/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/advanced_example/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/custom_op/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/custom_op/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/custom_op/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/custom_op/tests/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/octconv/octconv_example.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/octconv/octconv_example.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/ipu_estimator/data.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/ipu_estimator/data.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/ipu_estimator/model.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/ipu_estimator/model.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/ipu_estimator/utils.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/ipu_estimator/utils.py 3 | -------------------------------------------------------------------------------- /simple_applications/pytorch/bert/bert_inference.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/pytorch/bert/bert_inference.py 3 | -------------------------------------------------------------------------------- /simple_applications/pytorch/mnist/mnist_poptorch.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/pytorch/mnist/mnist_poptorch.py 3 | -------------------------------------------------------------------------------- /simple_applications/pytorch/mnist/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/pytorch/mnist/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut1_variables/start_here/tut1.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut1_variables/start_here/tut1.cpp 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut1_variables/tests/test_tut1.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut1_variables/tests/test_tut1.py 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut2_operations/tests/test_tut2.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut2_operations/tests/test_tut2.py 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut3_vertices/start_here/tut3.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut3_vertices/start_here/tut3.cpp 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/tests/test_tut4.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/tests/test_tut4.py 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/tut4_ipu_model.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/tut4_ipu_model.cpp 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut5_matrix_vector/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut5_matrix_vector/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut6_matrix_vector_opt/.gitignore: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut6_matrix_vector_opt/.gitignore 3 | -------------------------------------------------------------------------------- /tutorials/popvision/libpva/walkthrough_code_only.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/libpva/walkthrough_code_only.py 3 | -------------------------------------------------------------------------------- /tutorials/popvision/lightweight_profiling/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/lightweight_profiling/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popvision/reading_pvti_files/get_data.sh: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/reading_pvti_files/get_data.sh 3 | -------------------------------------------------------------------------------- /tutorials/popxl/1_basic_concepts/mnist_template.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/1_basic_concepts/mnist_template.py 3 | -------------------------------------------------------------------------------- /tutorials/popxl/1_basic_concepts/tests/test_tut1.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/1_basic_concepts/tests/test_tut1.py 3 | -------------------------------------------------------------------------------- /tutorials/popxl/2_custom_optimiser/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/2_custom_optimiser/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popxl/2_custom_optimiser/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/2_custom_optimiser/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popxl/3_data_parallelism/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/3_data_parallelism/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popxl/4_pipelining/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/4_pipelining/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popxl/5_remote_variables_and_rts/mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/5_remote_variables_and_rts/mnist.py 3 | -------------------------------------------------------------------------------- /tutorials/popxl/6_phased_execution/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/6_phased_execution/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/basics/tests/test_tuto_basics.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/basics/tests/test_tuto_basics.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/efficient_data_loading/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/efficient_data_loading/README.md 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/finetuning_bert/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/finetuning_bert/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/finetuning_bert/static/squad.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/finetuning_bert/static/squad.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/mixed_precision/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/mixed_precision/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/mixed_precision/walkthrough.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/mixed_precision/walkthrough.ipynb 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/observing_tensors/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/observing_tensors/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/pipelining/static/pipelining.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/pipelining/static/pipelining.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/pipelining/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/pipelining/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/vit_model_training/walkthrough.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/vit_model_training/walkthrough.py 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/demo_starting_point.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/demo_starting_point.py 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/tests/test_complete.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/tests/test_complete.py 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/demo_code_only.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/demo_code_only.py 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/requirements.txt 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/utils_tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/utils_tests/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/popart/pipelining/test_pipelining.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/pipelining/test_pipelining.py 3 | -------------------------------------------------------------------------------- /feature_examples/popart/recomputing/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/recomputing/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/advanced_example/codelets.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/advanced_example/codelets.cpp 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/popdist/popdist_training.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/popdist/popdist_training.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/embeddings/test_imdb.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/embeddings/test_imdb.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/ipu_estimator/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/ipu_estimator/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/popdist/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/popdist/tests/README.md 3 | -------------------------------------------------------------------------------- /simple_applications/popart/mnist/popart_mnist_conv.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/popart/mnist/popart_mnist_conv.py 3 | -------------------------------------------------------------------------------- /simple_applications/popart/mnist/test_popart_mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/popart/mnist/test_popart_mnist.py 3 | -------------------------------------------------------------------------------- /simple_applications/poplar/mnist/regression-demo.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/poplar/mnist/regression-demo.cpp 3 | -------------------------------------------------------------------------------- /simple_applications/pytorch/mnist/mnist_poptorch.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/pytorch/mnist/mnist_poptorch.ipynb 3 | -------------------------------------------------------------------------------- /simple_applications/pytorch/mnist/tests/test_mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/pytorch/mnist/tests/test_mnist.py 3 | -------------------------------------------------------------------------------- /simple_applications/tensorflow2/mnist/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/tensorflow2/mnist/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut1_variables/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut1_variables/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut2_operations/start_here/tut2.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut2_operations/start_here/tut2.cpp 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut3_vertices/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut3_vertices/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/libpva/cpp_example.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/libpva/cpp_example.cpp 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/tut4_ipu_hardware.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/tut4_ipu_hardware.cpp 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut5_matrix_vector/complete/Makefile: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut5_matrix_vector/complete/Makefile 3 | -------------------------------------------------------------------------------- /tutorials/popvision/reading_pvti_files/popart_mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/reading_pvti_files/popart_mnist.py 3 | -------------------------------------------------------------------------------- /tutorials/popvision/reading_pvti_files/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/reading_pvti_files/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popvision/reading_pvti_files/walkthrough.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/reading_pvti_files/walkthrough.py 3 | -------------------------------------------------------------------------------- /tutorials/popxl/1_basic_concepts/images/workflow.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/1_basic_concepts/images/workflow.png 3 | -------------------------------------------------------------------------------- /tutorials/popxl/2_custom_optimiser/mnist_template.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/2_custom_optimiser/mnist_template.py 3 | -------------------------------------------------------------------------------- /tutorials/popxl/3_data_parallelism/images/autodiff.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/3_data_parallelism/images/autodiff.png 3 | -------------------------------------------------------------------------------- /tutorials/popxl/4_pipelining/images/recomputation.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/4_pipelining/images/recomputation.png 3 | -------------------------------------------------------------------------------- /tutorials/popxl/5_remote_variables_and_rts/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/5_remote_variables_and_rts/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popxl/5_remote_variables_and_rts/mnist.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/5_remote_variables_and_rts/mnist.ipynb 3 | -------------------------------------------------------------------------------- /tutorials/popxl/6_phased_execution/images/phased.jpg: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/6_phased_execution/images/phased.jpg 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/basics/static/confusion_matrix.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/basics/static/confusion_matrix.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/finetuning_bert/Fine-tuning-BERT.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/finetuning_bert/Fine-tuning-BERT.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/observing_tensors/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/observing_tensors/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/pipelining/walkthrough_code_only.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/pipelining/walkthrough_code_only.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/vit_model_training/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/vit_model_training/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/vit_model_training/walkthrough.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/vit_model_training/walkthrough.ipynb 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/Folder.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/Folder.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/ssh-list.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/ssh-list.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/infeed_outfeed/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/infeed_outfeed/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/completed_example/main.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/completed_example/main.py 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/completed_example/model.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/completed_example/model.py 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/completed_example/utils.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/completed_example/utils.py 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/figures/NavBar.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/figures/NavBar.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/figures/conv_0.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/figures/conv_0.png 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/copyright_test/test_copyright.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/copyright_test/test_copyright.py 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/modern_python_tests/__init__.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/modern_python_tests/__init__.py 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/test_lint/test_trademark_lint.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/test_lint/test_trademark_lint.py 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/urls_test/test_link_parsers.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/urls_test/test_link_parsers.py 3 | -------------------------------------------------------------------------------- /feature_examples/popart/recomputing/test_recomputing.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/recomputing/test_recomputing.py 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/custom_op/poptorch_custom_op.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/custom_op/poptorch_custom_op.py 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/popdist/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/popdist/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/embeddings/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/embeddings/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/inspecting_tensors/mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/inspecting_tensors/mnist.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/popdist/popdist_training.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/popdist/popdist_training.py 3 | -------------------------------------------------------------------------------- /simple_applications/poplar/mnist/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/poplar/mnist/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /simple_applications/pytorch/bert/test_bert_inference.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/pytorch/bert/test_bert_inference.py 3 | -------------------------------------------------------------------------------- /simple_applications/pytorch/mnist/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/pytorch/mnist/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /simple_applications/tensorflow2/mnist/mnist_code_only.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/tensorflow2/mnist/mnist_code_only.py 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut2_operations/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut2_operations/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/libpva/python_example.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/libpva/python_example.py 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut5_matrix_vector/start_here/Makefile: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut5_matrix_vector/start_here/Makefile 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut5_matrix_vector/start_here/tut5.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut5_matrix_vector/start_here/tut5.cpp 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut6_matrix_vector_opt/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut6_matrix_vector_opt/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popvision/lightweight_profiling/tests/Makefile: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/lightweight_profiling/tests/Makefile 3 | -------------------------------------------------------------------------------- /tutorials/popvision/reading_pvti_files/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/reading_pvti_files/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popvision/reading_pvti_files/walkthrough.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/reading_pvti_files/walkthrough.ipynb 3 | -------------------------------------------------------------------------------- /tutorials/popxl/1_basic_concepts/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/1_basic_concepts/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/efficient_data_loading/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/efficient_data_loading/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/efficient_data_loading/walkthrough.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/efficient_data_loading/walkthrough.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/finetuning_bert/Fine-tuning-BERT.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/finetuning_bert/Fine-tuning-BERT.ipynb 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/finetuning_bert/squad_preprocessing.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/finetuning_bert/squad_preprocessing.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/finetuning_bert/static/pipelining.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/finetuning_bert/static/pipelining.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/finetuning_bert/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/finetuning_bert/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/mixed_precision/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/mixed_precision/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/pipelining/static/pipeline-figure.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/pipelining/static/pipeline-figure.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/pipelining/static/stages-poptorch.jpeg: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/pipelining/static/stages-poptorch.jpeg 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/prep-debug.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/prep-debug.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_11_1.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_11_1.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_11_2.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_11_2.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_11_3.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_11_3.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_11_4.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_11_4.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_12_1.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_12_1.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_12_2.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_12_2.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_12_3.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_12_3.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_12_4.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_12_4.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_14_1.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_14_1.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_14_10.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_14_10.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_14_11.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_14_11.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_14_13.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_14_13.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_14_14.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_14_14.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_14_2.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_14_2.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_14_4.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_14_4.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_14_5.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_14_5.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_14_7.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_14_7.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_14_8.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_14_8.png 3 | -------------------------------------------------------------------------------- /blogs_code/gnns/graph_packing_files/graph_packing_30_0.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/blogs_code/gnns/graph_packing_files/graph_packing_30_0.png 3 | -------------------------------------------------------------------------------- /feature_examples/popart/custom_operators/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/custom_operators/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/popart/phased_execution/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/phased_execution/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/popart/sharding/test_multi_ipu_popart.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/sharding/test_multi_ipu_popart.py 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/prefetch/required_apt_packages.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/prefetch/required_apt_packages.txt 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/custom_op/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/custom_op/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/embeddings/imdb_sequential.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/embeddings/imdb_sequential.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/embeddings/imdb_single_ipu.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/embeddings/imdb_single_ipu.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/inspecting_tensors/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/inspecting_tensors/README.md 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/ipu_estimator/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/ipu_estimator/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/ipu_estimator/test_cifar10.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/ipu_estimator/test_cifar10.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/popdist/popdist_inference.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/popdist/popdist_inference.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/popdist/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/popdist/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /simple_applications/popart/mnist/test_popart_mnist_conv.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/popart/mnist/test_popart_mnist_conv.py 3 | -------------------------------------------------------------------------------- /simple_applications/poplar/mnist/tests/test_poplar_mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/poplar/mnist/tests/test_poplar_mnist.py 3 | -------------------------------------------------------------------------------- /simple_applications/tensorflow2/mnist/tests/test_mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/tensorflow2/mnist/tests/test_mnist.py 3 | -------------------------------------------------------------------------------- /tech_notes_code/available_memory/tests/pytorch/test_all.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/available_memory/tests/pytorch/test_all.py 3 | -------------------------------------------------------------------------------- /tech_notes_code/recompilation/tensorflow2/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/recompilation/tensorflow2/tests/README.md 3 | -------------------------------------------------------------------------------- /tech_notes_code/recompilation/tensorflow2/tests/test_tf2.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/recompilation/tensorflow2/tests/test_tf2.py 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut2_operations/complete/tut2_complete.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut2_operations/complete/tut2_complete.cpp 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut3_vertices/complete/tut3_codelets.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut3_vertices/complete/tut3_codelets.cpp 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut3_vertices/complete/tut3_complete.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut3_vertices/complete/tut3_complete.cpp 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut3_vertices/start_here/tut3_codelets.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut3_vertices/start_here/tut3_codelets.cpp 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut5_matrix_vector/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut5_matrix_vector/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut6_matrix_vector_opt/tests/test_tut6.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut6_matrix_vector_opt/tests/test_tut6.py 3 | -------------------------------------------------------------------------------- /tutorials/popvision/lightweight_profiling/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/lightweight_profiling/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popxl/2_custom_optimiser/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/2_custom_optimiser/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popxl/3_data_parallelism/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/3_data_parallelism/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popxl/4_pipelining/images/pipelining_parallel.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/4_pipelining/images/pipelining_parallel.png 3 | -------------------------------------------------------------------------------- /tutorials/popxl/4_pipelining/tests/test_popxl_pipelining.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/4_pipelining/tests/test_popxl_pipelining.py 3 | -------------------------------------------------------------------------------- /tutorials/popxl/5_remote_variables_and_rts/images/rts.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/5_remote_variables_and_rts/images/rts.png 3 | -------------------------------------------------------------------------------- /tutorials/popxl/5_remote_variables_and_rts/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/5_remote_variables_and_rts/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popxl/6_phased_execution/images/phase_diagram.jpg: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/6_phased_execution/images/phase_diagram.jpg 3 | -------------------------------------------------------------------------------- /tutorials/popxl/6_phased_execution/images/remote_buffer.jpg: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/6_phased_execution/images/remote_buffer.jpg 3 | -------------------------------------------------------------------------------- /tutorials/popxl/6_phased_execution/images/x_dx_buffers.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/6_phased_execution/images/x_dx_buffers.png 3 | -------------------------------------------------------------------------------- /tutorials/popxl/6_phased_execution/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/6_phased_execution/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/efficient_data_loading/static/replica.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/efficient_data_loading/static/replica.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/efficient_data_loading/walkthrough.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/efficient_data_loading/walkthrough.ipynb 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/finetuning_bert/static/partitioning.jpg: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/finetuning_bert/static/partitioning.jpg 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/finetuning_bert/static/recomputation.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/finetuning_bert/static/recomputation.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/mixed_precision/walkthrough_code_only.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/mixed_precision/walkthrough_code_only.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/observing_tensors/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/observing_tensors/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/pipelining/static/pipelined-execution.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/pipelining/static/pipelined-execution.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/vit_model_training/static/output_26_0.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/vit_model_training/static/output_26_0.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/vit_model_training/static/output_46_0.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/vit_model_training/static/output_46_0.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/vit_model_training/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/vit_model_training/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/extension-ssh.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/extension-ssh.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/launch-json.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/launch-json.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/infeed_outfeed/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/infeed_outfeed/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/pipeline_time_seq_training.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/pipeline_time_seq_training.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/tests/test_completed_demos.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/tests/test_completed_demos.py 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/figures/BlankSession.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/figures/BlankSession.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/figures/ConvFilters.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/figures/ConvFilters.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/figures/ExampleScreen.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/figures/ExampleScreen.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/figures/MnistExamples.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/figures/MnistExamples.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/figures/conv_0_dists.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/figures/conv_0_dists.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/figures/eval_accuracy.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/figures/eval_accuracy.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/tests/test_tensorboard.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/tests/test_tensorboard.py 3 | -------------------------------------------------------------------------------- /feature_examples/popart/phased_execution/phased_execution.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/phased_execution/phased_execution.py 3 | -------------------------------------------------------------------------------- /simple_applications/pytorch/mnist/mnist_poptorch_code_only.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/pytorch/mnist/mnist_poptorch_code_only.py 3 | -------------------------------------------------------------------------------- /simple_applications/tensorflow2/mnist/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/simple_applications/tensorflow2/mnist/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popvision/libpva/tests/pytorch_test_tuto_libpva.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/libpva/tests/pytorch_test_tuto_libpva.py 3 | -------------------------------------------------------------------------------- /tutorials/popvision/reading_pvti_files/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/reading_pvti_files/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popxl/3_data_parallelism/images/autodiff_transf.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/3_data_parallelism/images/autodiff_transf.png 3 | -------------------------------------------------------------------------------- /tutorials/popxl/4_pipelining/images/inefficient_pipeline.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/4_pipelining/images/inefficient_pipeline.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/efficient_data_loading/static/pipeline.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/efficient_data_loading/static/pipeline.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/efficient_data_loading/tuto_data_loading.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/efficient_data_loading/tuto_data_loading.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/mixed_precision/static/MemoryDiffReport.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/mixed_precision/static/MemoryDiffReport.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/observing_tensors/anchor_tensor_example.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/observing_tensors/anchor_tensor_example.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/vit_model_training/tests/test_vit_model.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/vit_model_training/tests/test_vit_model.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/vit_model_training/walkthrough_code_only.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/vit_model_training/walkthrough_code_only.py 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_jupyter/screenshots/login.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_jupyter/screenshots/login.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/jupyter.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/jupyter.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/ssh-connecting.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/ssh-connecting.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/figures/TimeSeriesPage.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/figures/TimeSeriesPage.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/figures/epoch_accuracy.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/figures/epoch_accuracy.png 3 | -------------------------------------------------------------------------------- /feature_examples/popart/phased_execution/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/phased_execution/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/advanced_example/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/advanced_example/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/advanced_example/tests/test_example.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/advanced_example/tests/test_example.py 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/popdist/tests/test_popdist_training.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/popdist/tests/test_popdist_training.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/inspecting_tensors/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/inspecting_tensors/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/recomputation_checkpoints/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/recomputation_checkpoints/README.md 3 | -------------------------------------------------------------------------------- /tech_notes_code/recompilation/tensorflow2/TF2_recompilation.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/recompilation/tensorflow2/TF2_recompilation.py 3 | -------------------------------------------------------------------------------- /tech_notes_code/recompilation/tensorflow2/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/recompilation/tensorflow2/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut5_matrix_vector/complete/tut5_complete.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut5_matrix_vector/complete/tut5_complete.cpp 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut5_matrix_vector/tests/test_tut5_complete.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut5_matrix_vector/tests/test_tut5_complete.py 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut6_matrix_vector_opt/matrix-mul-codelets.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut6_matrix_vector_opt/matrix-mul-codelets.cpp 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut6_matrix_vector_opt/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut6_matrix_vector_opt/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popvision/lightweight_profiling/examples/example_1.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/lightweight_profiling/examples/example_1.cpp 3 | -------------------------------------------------------------------------------- /tutorials/popvision/lightweight_profiling/examples/example_2.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/lightweight_profiling/examples/example_2.cpp 3 | -------------------------------------------------------------------------------- /tutorials/popvision/lightweight_profiling/examples/example_3.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/lightweight_profiling/examples/example_3.cpp 3 | -------------------------------------------------------------------------------- /tutorials/popvision/lightweight_profiling/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/lightweight_profiling/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popvision/reading_pvti_files/walkthrough_code_only.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/reading_pvti_files/walkthrough_code_only.py 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/.gitignore: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/.gitignore 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/get_data.sh: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/get_data.sh 3 | -------------------------------------------------------------------------------- /tutorials/popxl/1_basic_concepts/images/module_graph_bgraph.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/1_basic_concepts/images/module_graph_bgraph.png 3 | -------------------------------------------------------------------------------- /tutorials/popxl/5_remote_variables_and_rts/images/ipu_links.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/5_remote_variables_and_rts/images/ipu_links.png 3 | -------------------------------------------------------------------------------- /tutorials/popxl/5_remote_variables_and_rts/images/mem_arch.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/5_remote_variables_and_rts/images/mem_arch.png 3 | -------------------------------------------------------------------------------- /tutorials/popxl/5_remote_variables_and_rts/images/transpose.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/5_remote_variables_and_rts/images/transpose.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/efficient_data_loading/static/iterations.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/efficient_data_loading/static/iterations.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/efficient_data_loading/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/efficient_data_loading/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/observing_tensors/static/GradientHistogram.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/observing_tensors/static/GradientHistogram.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_jupyter/screenshots/not_found.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_jupyter/screenshots/not_found.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/extension-python.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/extension-python.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/notebook/working.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/notebook/working.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/popart-fail.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/popart-fail.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/figures/conv_0_histograms.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/figures/conv_0_histograms.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/figures/model_graph_page.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/figures/model_graph_page.png 3 | -------------------------------------------------------------------------------- /feature_examples/popart/custom_operators/cube_op_example/Makefile: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/custom_operators/cube_op_example/Makefile 3 | -------------------------------------------------------------------------------- /feature_examples/poplar/advanced_example/required_apt_packages.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/poplar/advanced_example/required_apt_packages.txt 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/inspecting_tensors/outfeed_layers.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/inspecting_tensors/outfeed_layers.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/inspecting_tensors/outfeed_wrapper.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/inspecting_tensors/outfeed_wrapper.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/popdist/tests/test_popdist_example.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/popdist/tests/test_popdist_example.py 3 | -------------------------------------------------------------------------------- /tutorials/popvision/lightweight_profiling/examples/example_3_a.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/lightweight_profiling/examples/example_3_a.cpp 3 | -------------------------------------------------------------------------------- /tutorials/popvision/lightweight_profiling/images/program_tree.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/lightweight_profiling/images/program_tree.png 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/walkthrough.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/walkthrough.py 3 | -------------------------------------------------------------------------------- /tutorials/popxl/3_data_parallelism/images/backward_auto_accum.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/3_data_parallelism/images/backward_auto_accum.png 3 | -------------------------------------------------------------------------------- /tutorials/popxl/5_remote_variables_and_rts/images/collectives.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/5_remote_variables_and_rts/images/collectives.png 3 | -------------------------------------------------------------------------------- /tutorials/popxl/5_remote_variables_and_rts/images/ipu_indices.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/5_remote_variables_and_rts/images/ipu_indices.png 3 | -------------------------------------------------------------------------------- /tutorials/popxl/5_remote_variables_and_rts/replica_groupings.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/5_remote_variables_and_rts/replica_groupings.ipynb 3 | -------------------------------------------------------------------------------- /tutorials/popxl/5_remote_variables_and_rts/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/5_remote_variables_and_rts/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popxl/6_phased_execution/images/batch_serialisation.jpg: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/6_phased_execution/images/batch_serialisation.jpg 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/efficient_data_loading/walkthrough_code_only.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/efficient_data_loading/walkthrough_code_only.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/finetuning_bert/static/bert-pipelining-pod4.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/finetuning_bert/static/bert-pipelining-pod4.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/C++-debugger/button.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/C++-debugger/button.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/code-complete.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/code-complete.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/documentation.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/documentation.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/completed_demos/completed_demo_ipu.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/completed_demos/completed_demo_ipu.py 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/modern_python_tests/test_must_use_pytest.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/modern_python_tests/test_must_use_pytest.py 3 | -------------------------------------------------------------------------------- /feature_examples/popart/custom_operators/leaky_relu_example/Makefile: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/custom_operators/leaky_relu_example/Makefile 3 | -------------------------------------------------------------------------------- /feature_examples/pytorch/custom_op/tests/test_poptorch_custom_op.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/pytorch/custom_op/tests/test_poptorch_custom_op.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/embeddings/imdb_single_ipu_sequential.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/embeddings/imdb_single_ipu_sequential.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/inspecting_tensors/outfeed_callback.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/inspecting_tensors/outfeed_callback.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/inspecting_tensors/outfeed_optimizer.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/inspecting_tensors/outfeed_optimizer.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/inspecting_tensors/tests/test_mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/inspecting_tensors/tests/test_mnist.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/ipu_estimator/cifar10_ipu_estimator.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/ipu_estimator/cifar10_ipu_estimator.py 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut1_variables/complete/tut1_ipu_model_complete.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut1_variables/complete/tut1_ipu_model_complete.cpp 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/screenshots/PopVision_GA_liveness.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/screenshots/PopVision_GA_liveness.png 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/screenshots/PopVision_GA_memory.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/screenshots/PopVision_GA_memory.png 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/screenshots/PopVision_GA_summary.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/screenshots/PopVision_GA_summary.png 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut5_matrix_vector/complete/matrix-mul-codelets.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut5_matrix_vector/complete/matrix-mul-codelets.cpp 3 | -------------------------------------------------------------------------------- /tutorials/popvision/reading_pvti_files/tests/test_tuto_read_pvti.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/reading_pvti_files/tests/test_tuto_read_pvti.py 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/popart_mnist.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/popart_mnist.py 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/tests/README.md: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/tests/README.md 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/walkthrough.ipynb: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/walkthrough.ipynb 3 | -------------------------------------------------------------------------------- /tutorials/popxl/3_data_parallelism/images/data_parallel_training.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/3_data_parallelism/images/data_parallel_training.png 3 | -------------------------------------------------------------------------------- /tutorials/popxl/5_remote_variables_and_rts/images/remote_buffers.jpg: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/5_remote_variables_and_rts/images/remote_buffers.jpg 3 | -------------------------------------------------------------------------------- /tutorials/popxl/5_remote_variables_and_rts/images/variables_tp_dp.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/5_remote_variables_and_rts/images/variables_tp_dp.png 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/finetuning_bert/tests/test_finetuning_notebook.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/finetuning_bert/tests/test_finetuning_notebook.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/mixed_precision/tests/test_tuto_mixed_precision.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/mixed_precision/tests/test_tuto_mixed_precision.py 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_jupyter/screenshots/jupyter_server.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_jupyter/screenshots/jupyter_server.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_jupyter/screenshots/open_notebook.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_jupyter/screenshots/open_notebook.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/notebook/new-notebook.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/notebook/new-notebook.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/visual-debugger.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/visual-debugger.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/infeed_outfeed/execution_trace/with_feeds.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/infeed_outfeed/execution_trace/with_feeds.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/infeed_outfeed/tests/test_mnist_with_feeds.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/infeed_outfeed/tests/test_mnist_with_feeds.py 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/completed_demos/completed_demo_faster.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/completed_demos/completed_demo_faster.py 3 | -------------------------------------------------------------------------------- /utils/tutorials_tests/modern_python_tests/test_must_use_fstrings.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/utils/tutorials_tests/modern_python_tests/test_must_use_fstrings.py 3 | -------------------------------------------------------------------------------- /feature_examples/popart/phased_execution/tests/test_phased_execution.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/phased_execution/tests/test_phased_execution.py 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut1_variables/complete/tut1_ipu_hardware_complete.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut1_variables/complete/tut1_ipu_hardware_complete.cpp 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/screenshots/PopVision_GA_execution.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/screenshots/PopVision_GA_execution.png 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/screenshots/PopVision_GA_operations.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/screenshots/PopVision_GA_operations.png 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut5_matrix_vector/start_here/matrix-mul-codelets.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut5_matrix_vector/start_here/matrix-mul-codelets.cpp 3 | -------------------------------------------------------------------------------- /tutorials/popxl/2_custom_optimiser/tests/test_popxl_custom_optimiser.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/2_custom_optimiser/tests/test_popxl_custom_optimiser.py 3 | -------------------------------------------------------------------------------- /tutorials/popxl/3_data_parallelism/tests/test_popxl_data_parallelism.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/3_data_parallelism/tests/test_popxl_data_parallelism.py 3 | -------------------------------------------------------------------------------- /tutorials/popxl/5_remote_variables_and_rts/images/program_structure.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/5_remote_variables_and_rts/images/program_structure.png 3 | -------------------------------------------------------------------------------- /tutorials/popxl/6_phased_execution/images/batch_serialisation_grad.jpg: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/6_phased_execution/images/batch_serialisation_grad.jpg 3 | -------------------------------------------------------------------------------- /tutorials/popxl/6_phased_execution/tests/test_popxl_phased_execution.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/6_phased_execution/tests/test_popxl_phased_execution.py 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/C++-debugger/3-run-python.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/C++-debugger/3-run-python.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/choose-interpreter.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/choose-interpreter.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/interpreter/enter.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/interpreter/enter.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/interpreter/select.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/interpreter/select.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/popart-breakpoint.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/popart-breakpoint.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/popart-prep-debug.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/popart-prep-debug.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/infeed_outfeed/completed_code/mnist_with_feeds.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/infeed_outfeed/completed_code/mnist_with_feeds.py 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/infeed_outfeed/execution_trace/without_feeds.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/infeed_outfeed/execution_trace/without_feeds.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/infeed_outfeed/tests/test_mnist_without_feeds.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/infeed_outfeed/tests/test_mnist_without_feeds.py 3 | -------------------------------------------------------------------------------- /feature_examples/popart/custom_operators/leaky_relu_example/test_lrelu.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/custom_operators/leaky_relu_example/test_lrelu.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/recomputation_checkpoints/recompute_lstm.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/recomputation_checkpoints/recompute_lstm.py 3 | -------------------------------------------------------------------------------- /tech_notes_code/model_parallelism/tensorflow2_code/inference_pipelining.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/model_parallelism/tensorflow2_code/inference_pipelining.py 3 | -------------------------------------------------------------------------------- /tech_notes_code/model_parallelism/tensorflow2_code/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/model_parallelism/tensorflow2_code/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tech_notes_code/model_parallelism/tensorflow2_code/training_pipelining.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/model_parallelism/tensorflow2_code/training_pipelining.py 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/screenshots/PopVision_GA_program_tree.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/screenshots/PopVision_GA_program_tree.png 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/screenshots/mnist.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/screenshots/mnist.png 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/efficient_data_loading/tests/test_tuto_data_loading.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/efficient_data_loading/tests/test_tuto_data_loading.py 3 | -------------------------------------------------------------------------------- /tutorials/pytorch/observing_tensors/tests/test_tuto_observing_tensors.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/pytorch/observing_tensors/tests/test_tuto_observing_tensors.py 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/C++-debugger/1-debug-points.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/C++-debugger/1-debug-points.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/C++-debugger/4-port-forward.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/C++-debugger/4-port-forward.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/choose-interpreter-2.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/choose-interpreter-2.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/documentation-hello.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/documentation-hello.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/errors/settings-env.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/errors/settings-env.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/popart-autocomplete.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/popart-autocomplete.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/popart-documentation.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/popart-documentation.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/popart-prep-debug-1.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/popart-prep-debug-1.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/pytorch/debug-library.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/pytorch/debug-library.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/infeed_outfeed/completed_code/mnist_without_feeds.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/infeed_outfeed/completed_code/mnist_without_feeds.py 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/completed_demos/completed_demo_pipelining.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/completed_demos/completed_demo_pipelining.py 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/keras/completed_demos/completed_demo_replicated.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/keras/completed_demos/completed_demo_replicated.py 3 | -------------------------------------------------------------------------------- /feature_examples/popart/custom_operators/leaky_relu_example/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/custom_operators/leaky_relu_example/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/ipu_estimator/cifar10_ipu_estimator_replica.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/ipu_estimator/cifar10_ipu_estimator_replica.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/ipu_estimator/cifar10_ipu_pipeline_estimator.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/ipu_estimator/cifar10_ipu_pipeline_estimator.py 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut5_matrix_vector/complete/tut5_ipu_hardware_complete.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut5_matrix_vector/complete/tut5_ipu_hardware_complete.cpp 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut5_matrix_vector/tests/test_tut5_ipu_hardware_complete.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut5_matrix_vector/tests/test_tut5_ipu_hardware_complete.py 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/popart_mnist_complete.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/popart_mnist_complete.py 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/walkthrough_code_only.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/walkthrough_code_only.py 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/C++-debugger/new-launch-config.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/C++-debugger/new-launch-config.png 3 | -------------------------------------------------------------------------------- /tutorials/tensorflow2/tensorboard/figures/model_graph_pipeline_expanded.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/tensorflow2/tensorboard/figures/model_graph_pipeline_expanded.png 3 | -------------------------------------------------------------------------------- /feature_examples/popart/custom_operators/cube_op_example/cube_fn_custom_op.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/custom_operators/cube_op_example/cube_fn_custom_op.cpp 3 | -------------------------------------------------------------------------------- /feature_examples/popart/custom_operators/cube_op_example/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/custom_operators/cube_op_example/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /feature_examples/popart/custom_operators/cube_op_example/tests/test_cube_op.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/custom_operators/cube_op_example/tests/test_cube_op.py 3 | -------------------------------------------------------------------------------- /feature_examples/popart/custom_operators/leaky_relu_example/run_leaky_relu.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/custom_operators/leaky_relu_example/run_leaky_relu.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/inspecting_tensors/tests/test_outfeed_optimizer.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/inspecting_tensors/tests/test_outfeed_optimizer.py 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/recomputation_checkpoints/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/recomputation_checkpoints/tests/requirements.txt 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/screenshots/PopVision_GA_computation_graph.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/screenshots/PopVision_GA_computation_graph.png 3 | -------------------------------------------------------------------------------- /tutorials/poplar/tut4_profiling/screenshots/PopVision_GA_liveness_2_reports.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/poplar/tut4_profiling/screenshots/PopVision_GA_liveness_2_reports.png 3 | -------------------------------------------------------------------------------- /tutorials/popvision/lightweight_profiling/tests/test_lightweight_profiling.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/lightweight_profiling/tests/test_lightweight_profiling.py 3 | -------------------------------------------------------------------------------- /tutorials/popxl/5_remote_variables_and_rts/tests/test_popxl_remote_variables.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popxl/5_remote_variables_and_rts/tests/test_popxl_remote_variables.py 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/C++-debugger/2-instrument-python.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/C++-debugger/2-instrument-python.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/C++-debugger/5-launch-gdb-server.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/C++-debugger/5-launch-gdb-server.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/C++-debugger/7-step-through-code.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/C++-debugger/7-step-through-code.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/C++-debugger/function-breakpoint.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/C++-debugger/function-breakpoint.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/pytorch/debug-justmycode.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/pytorch/debug-justmycode.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/C++-debugger/6-attach-to-gdb-server.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/C++-debugger/6-attach-to-gdb-server.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/errors/popart-modulenotfound.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/errors/popart-modulenotfound.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/errors/poptorch-importerror.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/errors/poptorch-importerror.png 3 | -------------------------------------------------------------------------------- /feature_examples/popart/custom_operators/leaky_relu_example/leaky_relu_custom_op.cpp: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/popart/custom_operators/leaky_relu_example/leaky_relu_custom_op.cpp 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/recomputation_checkpoints/static/LSTM_7_checkpoints.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/recomputation_checkpoints/static/LSTM_7_checkpoints.png 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/recomputation_checkpoints/tests/test_recompute_lstm.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/recomputation_checkpoints/tests/test_recompute_lstm.py 3 | -------------------------------------------------------------------------------- /tech_notes_code/model_parallelism/tensorflow2_code/training_pipelining_sequential.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/model_parallelism/tensorflow2_code/training_pipelining_sequential.py 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/errors/popart-modulenotfound-1.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/errors/popart-modulenotfound-1.png 3 | -------------------------------------------------------------------------------- /feature_examples/tensorflow2/recomputation_checkpoints/static/LSTM_no_checkpoints.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/feature_examples/tensorflow2/recomputation_checkpoints/static/LSTM_no_checkpoints.png 3 | -------------------------------------------------------------------------------- /tech_notes_code/model_parallelism/tensorflow2_code/inference_pipelining_sequential.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/model_parallelism/tensorflow2_code/inference_pipelining_sequential.py 3 | -------------------------------------------------------------------------------- /tech_notes_code/model_parallelism/tensorflow2_code/tests/test_model_parallelism_tf2.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/model_parallelism/tensorflow2_code/tests/test_model_parallelism_tf2.py 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/screenshots/mnist_instrumented.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/screenshots/mnist_instrumented.png 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/tests/test_tuto_SA_instrumentation.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/tests/test_tuto_SA_instrumentation.py 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/interpreter/select-interpreter-cmd.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/interpreter/select-interpreter-cmd.png 3 | -------------------------------------------------------------------------------- /tutorials/standard_tools/using_vscode/img/python/interpreter/select-interpreter-gui.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/standard_tools/using_vscode/img/python/interpreter/select-interpreter-gui.png 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/screenshots/mnist_instrumented_loss.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/screenshots/mnist_instrumented_loss.png 3 | -------------------------------------------------------------------------------- /tech_notes_code/model_parallelism/tensorflow2_code/inference_pipelining_set_pipeline_stage.py: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tech_notes_code/model_parallelism/tensorflow2_code/inference_pipelining_set_pipeline_stage.py 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/screenshots/mnist_instrumented_instant_events.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/screenshots/mnist_instrumented_instant_events.png 3 | -------------------------------------------------------------------------------- /tutorials/popvision/system_analyser_instrumentation/screenshots/mnist_instrumented_loss_accuracy_cpuload.png: -------------------------------------------------------------------------------- 1 | Graphcore Tutorials have moved, find this file at: 2 | https://github.com/graphcore/examples/tree/v3.2.0/tutorials/tutorials/popvision/system_analyser_instrumentation/screenshots/mnist_instrumented_loss_accuracy_cpuload.png 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Graphcore Tutorials [Archived] 3 | 4 | IPU tutorials have moved, the latest versions of our teaching materials can now be found in 5 | the `tutorials/` folder of the Graphcore [examples repository](https://github.com/graphcore/examples/tree/master/tutorials). 6 | 7 | If you've encountered a problem or want to suggest an improvement to our tutorials 8 | please raise a [Github issue at graphcore/examples](https://github.com/graphcore/examples/issues), contact us at 9 | [support@graphcore.ai](mailto:support@graphcore.ai?subject=General%20Feedback), or 10 | get in touch through the #help channel of our slack community! 11 | 12 | [![Join our Slack Community](https://img.shields.io/badge/Slack-Join%20Graphcore's%20Community-blue?style=flat-square&logo=slack)](https://www.graphcore.ai/join-community) 13 | 14 | If you are looking for the latest version of the documentation for the Poplar software stack, and other 15 | developer resources, you can find it at . 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2019 Graphcore Ltd. 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 19 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 20 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 21 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 22 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------