본문 바로가기

분류 전체보기139

Gaussian Process 공부 중 https://www.youtube.com/watch?v=TuwSgXGReks 2022. 5. 1.
CUDA 예제 프로그램 작성 및 실행 CUDA 예제 프로그램 작성 및 실행을 통한 CUDA 테스트https://jhui.github.io/2017/03/06/CUDA/ “CUDA Tutorial”Sample code in adding 2 numbers with a GPU Terminology: Host (a CPU and host memory), device (a GPU and device memory). This sample code adds 2 numbers together with a GPU: Define a kernel (a function to run on a GPU). Allocate & initialize the host data.jhui.github.io위 github 페이지를 작성해서 덧셈 연산을 GPU로 수행하도록 CUDA.. 2022. 4. 28.
CUDA Tool kit 설치 CUDA 설치 및 사용 튜토리얼은 인터넷에 검색하는것 보다, NVIDIA 공식 문서를 보는것이 가장 효율적인것 같다. https://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/index.html New | Project... NVIDIA-> CUDA->, then select a template for your CUDA Toolkit version. For examp" data-og-host="docs.nvidia.com" data-og-source-url="https://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/index.html" data-og-url="http.. 2022. 4. 28.
C++ 코드를 웹 서비스/어플리 케이션으로 만드는 방법 참조 1 : https://nlesc-jcer.github.io/cpp2wasm/#/?id=javascript-web-service Guide to make C++ available as a web application nlesc-jcer.github.io 참조 2 : https://www.tutorialspoint.com/cplusplus/cpp_web_programming.htm C++ Web Programming C++ Web Programming What is CGI? The Common Gateway Interface, or CGI, is a set of standards that define how information is exchanged between the web server and a.. 2022. 4. 27.
정적 라이브러리와 동적 라이브러리 오픈소스를 사용하려다 보니 라이브러리라는 개념을 처음 사용하게 됐다. 라이브러리란 코드를 포함한 컴파일된 파일을 의미한다. 오픈 소스 사용시, 오픈소스의 소스코드를 모두 긁어다가 사용할 수 있지만, 그것보다 라이브러리 형태로 본 프로젝트에 링킹시켜 사용하는게 더 편리하다. 오픈 소스의 모든 소스코드를 쓸게 아니기 때문이다. 라이브러리는 3개의 종류가 있다. 각각 '정적 라이브러리 (Static Library)', '동적 라이브러리 (Dyanmic Library)', '공유 라이브러리 (Shared Library)'이다. 각 라이브러리는 본 프로젝트에 로드되는 시점에 따라 구분할 수 있다. 정적 라이브러리 (Static Library) 정적 라이브러리의 확장자명은 .lib 이다. 그런데 동적 라이브러리 파.. 2022. 4. 26.
라이센스 검색 시스템 https://www.olis.or.kr/ 메인화면 오픈소스 라이선스에 관한 모든 정보를 한번에 해결! 라이선스 유형과 전문지식을 제공하고 다양한 오픈소스 정보도 알려드립니다. 라이선스 교육영상 및애니메이션 OSS 라이선스 상담하기 라 www.olis.or.kr 각 라이센스 별 주요 내용 및 한글 번역 전문, 라이센스 비교포 등을 확인할 수 있는 국내 사이트. 2022. 4. 25.