코딩Coding/한글Rust강의★내가★공부하려고만듬
-
C++❤️Coding the Mandelbrot - C++ Tutorial | Indigo Code코딩Coding/한글Rust강의★내가★공부하려고만듬 2022. 6. 29. 15:06
https://youtu.be/entjSp3LIfQ sdl2 https://youtu.be/KnCNfBb2ODQ 다른 힌트 https://youtube.com/shorts/h5PuIm6fRr8?feature=share 다른 힌트 공식도 알려줌 https://youtu.be/pn2vlselv_g 엑셀 같은 셸로 쉽게 이해하기 https://youtu.be/dyZb-LAiu94 다른 힌트 자바스크립트로 구현함 https://youtu.be/-B2QMTb51SM
-
Rust - Context개념 정리❤️코딩Coding/한글Rust강의★내가★공부하려고만듬 2022. 6. 29. 11:21
Rust의 Context는 constexpr와 유사하다 Rust에는 C++에서 가져온 아이디어 참 많다 ㅎㅎ 그래서 C++을 공부해야 한다 ㅜㅜ 내 나름대로 정리함 러스트 const fn 은 const context에 함수를 부르는 개념이라 일단 러스트의 context를 먼저 이해 하셔야 합니다. A const fn is a function that one is permitted to call from a const context https://doc.rust-lang.org/reference/const_eval.html Constant Evaluation - The Rust Reference Constant evaluation is the process of computing the result of ..
-
C++❤️)Concurrencpp Modern concurrency for C++동영상 만들예정코딩Coding/한글Rust강의★내가★공부하려고만듬 2022. 6. 29. 08:32
https://habr.com/en/post/526464/ ConcurrenCpp — The C++ concurrency library Repository concurrencpp allows applications to write asynchronous code easily and safely by using executors and coroutines. By using concurrencpp applications can break down big procedures that need... habr.com https://github.com/David-Haim/concurrencpp GitHub - David-Haim/concurrencpp: Modern concurrency for C++. Tasks,..
-
C++ Parallel계산으로 코딩해도 시간이 더 걸리는 경우의 문제점 해결 방법코딩Coding/한글Rust강의★내가★공부하려고만듬 2022. 6. 28. 06:43
https://stackoverflow.com/questions/15412025/parallel-execution-taking-more-time-than-serial Parallel Execution taking more time than Serial? i am studying task implementation in TBB and have run code for parallel and serial calculation of Fibonacci Series. The Code is : #include #include #include