본문 바로가기

전체 글

(161)
Tex, LaTex LaTex란? https://ahnjg.tistory.com/17 LaTex란? Tex 수학식을 보기 좋고 편리하게 조판하기 위한 도구로, 매우 완벽하게 개발되어 더 이상의 개발이 이루어지지 않고 있습니다. 하지만 이 자체가 프로그래밍 언어와 마찬가지 였음으로 이것을 ahnjg.tistory.com LaTex 이쁘게 쓰기 https://uzun.dev/172 ⌨️ LaTeX 빠르게 학습하기 [4] 수식 입력하기 (equation, multline, align, eqnarray, gather) * 이 글의 목적은 필자의 LATEX 문서작성 도구를 빠르게 알아보고 학습하기 위한 글이므로 불친절합니다 LaTeX으로 수식을 넣는 방법을 총망라해보자. 화이팅! 수식 입력하기 수식 넣기 : 문장안에 uzun.dev..
Github profile 관리 https://butter-shower.tistory.com/142
Krylov subspace https://webdocs.cs.ualberta.ca/~rgreiner/C-466/SLIDES/painless-conjugate-gradient.pdf https://julia.quantecon.org/tools_and_techniques/iterative_methods_sparsity.html Krylov Methods and Matrix Conditioning This website presents a set of lectures on quantitative economic modeling, designed and written by Jesse Perla, Thomas J. Sargent and John Stachurski. The language instruction is Julia. julia...
19. Numerical Linear Algebra and Factorizations 19. Numerical Linear Algebra and Factorizations 출처 : https://julia.quantecon.org/tools_and_techniques/linear_algebra.html Linear Algebra This website presents a set of lectures on quantitative economic modeling, designed and written by Jesse Perla, Thomas J. Sargent and John Stachurski. The language instruction is Julia. julia.quantecon.org
Intel C/C++ Compiler : ICC, ICX, DPC++ Intel C++ compilers: ICC (Linux), ICL (Windows) are classic Intel C/C++ Compilers. Whereas, ICX is an Intel nextgen compiler based on Clang /LLVM technology along with Intel proprietary optimizations and code generation. You may use ICC for performance on CPU targets. ICX enables OpenMP TARGET offload to Intel GPU targets. Intel DPC++ compiler: DPC++ compiler driver supports single-source cross-..
동시성,병행성 (Concurrency), 병렬성 (Parallelism) Concurrency는 프로그램의 성질이고 parallel execution은 기계의 성질이다. Concurrenty is a property of the program and prallel execution is a property of the machine. 먼저 concurrency부터 이야기하면, 어떤 프로그램이나 알고리즘이 순서에 상관없이 동시에 수행될 수 있다면 concurrent하다고 말합니다. 예를 들어, 1부터 100까지 숫자를 더하는 과정을 생각해보면 숫자 100개를 여러 부분 집합으로 나눈 뒤 동시에 부분합을 구합니다. 그리고 이 부분합을 다시 더하면 원래 얻고자 하는 값을 얻을 수 있습니다. 이 때 이 알고리즘은 concurrent하다라고 말합니다. 그런데 이 알고리즘이 정말 물리적..
Pytest 참고 자료 Pytest tutorial 한글 정리 링크 https://jangseongwoo.github.io/test/pytest_basic/ Pytest 참고 할 만한 Github https://github.com/kevgathuku/pytest-intro Unittest 참고 할 만한 Github https://github.com/gwtw/py-sorting GitHub - gwtw/py-sorting: A collection of sorting algorithms written in Python. A collection of sorting algorithms written in Python. - GitHub - gwtw/py-sorting: A collection of sorting algorithms wr..
Python Application Layouts, Structuring https://realpython.com/python-application-layouts/ Python Application Layouts: A Reference – Real Python A reference guide to common Python application layouts and project structures for command-line applications, web applications, and more. realpython.com CLI App 구성 https://realpython.com/python-typer-cli/#step-1-set-up-the-to-do-project