-
Notifications
You must be signed in to change notification settings - Fork 74
HOT FIX: Update docs #658
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
HOT FIX: Update docs #658
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
d51431a
refactor CMake scripts: centralize target linking functionality
allnes b0c18d4
Merge branch 'master' of https://github.com/learning-process/parallel…
allnes ab3303f
Merge branch 'master' of https://github.com/learning-process/parallel…
allnes 1f9bb76
Merge branch 'master' of https://github.com/learning-process/parallel…
allnes 7bbec06
Merge branch 'master' of https://github.com/learning-process/parallel…
allnes 68516b1
Merge branch 'master' of https://github.com/learning-process/parallel…
allnes 30fb805
Merge branch 'master' of https://github.com/allnes/parallel_programmi…
allnes a791f0a
Merge branch 'master' of https://github.com/learning-process/parallel…
allnes 12d0b45
update translations in RU locale: adjust point calculations and corre…
allnes 08db456
update translations and documentation: refine CI and environment setu…
allnes 765a803
update CI diagram: add background for additional workflows section
allnes f7f87db
update CI diagram: adjust styles, add group background, refine layout…
allnes c0ead74
update documentation: simplify introduction and points structure, ref…
allnes 1a94bf0
Merge branch 'master' into an/update-docs
allnes 1a5a86b
update documentation: add spacing in report guidelines for better rea…
allnes File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,31 +12,25 @@ Practice | |
| - Test verification | ||
|
|
||
| - Task distribution is random for each student. | ||
| - An example for each technology can be found in the corresponding directory: ``tasks/<all/omp/tbb/seq/stl/mpi>/example``. | ||
| - In each repository, the README.md contains a link to the course documentation (**read it fully!!!**). | ||
| - Additionally, each repository includes an example of a properly formatted PULL REQUEST. | ||
| - Full automation of quality and performance checks; plagiarism checks are applied. | ||
| - Deadlines are set per task. See the penalties and grading rules in ``Points``. | ||
| - Examples are provided in ``tasks/example_threads`` and ``tasks/example_processes`` (and extended variations ``tasks/example_processes_2`` / ``tasks/example_processes_3``). | ||
| - In each repository, the README.md contains a link to the course documentation. | ||
| - Each repository includes an example of a properly formatted PULL REQUEST. | ||
| - Submission of all tasks is mandatory to pass the course. | ||
| - A task that has been merged into the master branch continues to be monitored. | ||
| If a task fails in the master, it is disabled, and a record of this is added to the score table. | ||
| All disabled tasks will result in a zero points result for those tasks at the end of the semester. | ||
| It can be seen that your task is disabled due to the following reason: the directory of your task has been renamed | ||
| from ``seq/nesterov_a_vector_sum`` to ``seq/nesterov_a_vector_sum_disabled`` | ||
| - All resources for using the repository will be provided here: | ||
|
|
||
| - `Git for half an hour: A Beginner’s Guide <https://proglib.io/p/git-for-half-an-hour>`__ | ||
| - `Getting Started with Git and GitHub: A Beginner’s Guide <https://medium.com/nuances-of-programming/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-git-%D0%B8-github-%D1%80%D1%83%D0%BA%D0%BE%D0%B2%D0%BE%D0%B4%D1%81%D1%82%D0%B2%D0%BE-%D0%B4%D0%BB%D1%8F-%D0%BD%D0%B0%D1%87%D0%B8%D0%BD%D0%B0%D1%8E%D1%89%D0%B8%D1%85-54ea2567d76c>`__ | ||
| - `Git: A Quick Start Guide to Using Core Operations with Explanations <https://tproger.ru/translations/git-quick-start/>`__ | ||
| - `Conflicts resolving in Git <https://githowto.com/ru/resolving_conflicts>`__ | ||
| - `Google testing framework (gtest) <https://habr.com/ru/post/119090/>`__ | ||
| - `GoogleTest Primer <https://github.com/google/googletest/blob/main/docs/primer.md>`__ | ||
| - `GitHub Actions documentation <https://docs.github.com/ru/actions>`__ | ||
| - `Parallel Programming Technologies. Message Passing Interface (MPI) <https://parallel.ru/vvv/mpi.html#p1>`__ | ||
| - `Typing and Layout in the System LaTeX <https://www.mccme.ru/free-books/llang/newllang.pdf>`__ | ||
| - `LaTeX for the beginners <https://web.archive.org/web/20210420184700/http://www.docs.is.ed.ac.uk/skills/documents/3722/3722-2014.pdf>`__ | ||
| - `What is OpenMP? <https://parallel.ru/tech/tech_dev/openmp.html>`__ | ||
| - `TBB-1 <https://web.archive.org/web/20220406024622/http://www.unn.ru/pages/e-library/aids/2007/12.pdf>`__ | ||
| - `Writing Multithreaded Applications in C++ <https://eax.me/cpp-multithreading/>`__ | ||
| - `Multithreading: New Features of the C++11 Standard <https://web.archive.org/web/20200608173050/http://www.quizful.net/post/multithreading-cpp11>`__ | ||
| - `Introduction to Parallel Computing <http://ikt.muctr.ru/images/info/2Lecture_3.pdf>`__ | ||
| Communication | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same question, is it needed here? |
||
| ~~~~~~~~~~~~~ | ||
|
|
||
| \* *All instructions, repositories, and tables may be updated during the learning process for better usability. Be prepared for changes, check and update them periodically!!!* | ||
| - Telegram channel — announcements and quick updates | ||
| - GitHub Issues — repository problems and bug reports | ||
| - Lessons — Q&A | ||
| - Feedback form — critical issues | ||
| - Email — non‑urgent matters | ||
|
|
||
| \* *All instructions, repositories, and tables may be updated during the learning process for better usability. Be prepared for changes and check updates periodically.* | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The point of previous graph was to be automatically updateable. Here it is very diffeicult to keep it clear all the time. As you know, CI pipeline part is intended to be changed quite often, so it is impractical to keep unmaintainable svgs