회사에서 사용할만한 웹 달력 / 스케쥴러를 찾는데 눈에 띄는 두녀석.
[링크 : http://www.php.brickhost.com/] web scehduler
'프로그램 사용 > Webcalendar' 카테고리의 다른 글
| webcalendar 한글문제 (0) | 2011.06.21 |
|---|---|
| webcalendar (0) | 2011.04.06 |
| webcalendar 한글문제 (0) | 2011.06.21 |
|---|---|
| webcalendar (0) | 2011.04.06 |
| [Tue Jan 04 16:32:57 2011] [error] [client 125.132.149.241] PHP Warning: Unknown: POST Content-Length of 501 bytes exceeds the limit of -1073741824 bytes in Unknown on line 0, referer: http://localhost/mediawiki-1.15.5/index.php?title=Housing_front&action=edit |
| post_max_size = 8M |
| mediawiki - ConfirmAccount , ConfirmEdit (0) | 2011.06.07 |
|---|---|
| mediawiki extension - ConfirmAccount (0) | 2011.05.21 |
| mediawiki PDF 파일 올리기 (0) | 2010.12.23 |
| mediawiki User statistics extension - 사용자 통계 확장기능 (0) | 2010.12.20 |
| mediawiki - UserMerge 사용자 계정삭제 및 병합 (0) | 2010.12.20 |
| 헉?! 윈도우 msn 털린건가? (6) | 2011.01.19 |
|---|---|
| 악 나의 삐뚜러진 필터링 (2) | 2011.01.05 |
| Reboot (4) | 2011.01.02 |
| 냉기 보호막 +1 ? (2) | 2010.12.28 |
| 내 머리속에 도청장치가 있는것 같아! (4) | 2010.12.26 |
| mantisbt-2.0.0 설치 (0) | 2017.01.19 |
|---|---|
| manstis bt 버전이 올랐네? (0) | 2017.01.19 |
| mantis 우선순위 아이콘 (4) | 2010.12.29 |
| mantis workflow - 맨티스 이슈 흐름 (2) | 2010.12.29 |
| Mantis 사용자별 메뉴 언어 설정하기(Menu Language setting per user on Mantis) (0) | 2010.12.22 |
| upload_max_filesize = 4G |
| post_max_size = 8M |
| $ sudo service apache2 restart |
| ajaxplorer 한글문제 (2) | 2011.03.21 |
|---|---|
| ajaxplorer - 음악틀기 (0) | 2011.02.15 |
| ajaxplorer 3.0.1 에서 이미지 편집(pixlr) 실행이 안될경우 (2) | 2010.11.09 |
| 우분투 10.04 LTS의 아파치2 데몬 유저/그룹 변경하기 (0) | 2010.11.03 |
| php5 upload 용량제한 크기 변경하기 (0) | 2010.11.03 |
Last Updated:
12
/
22
/
2010CUDA Toolkit 3.2 (November 2010)
Release Highlights New and Improved CUDA Libraries
[링크 : http://developer.nvidia.com/object/cuda_3_2_downloads.html] |
| CUDA training (0) | 2011.01.05 |
|---|---|
| Visual Studio 2008 에서 CUDA 프로젝트 만들기 (2) | 2011.01.04 |
| deviceQuery on 8600GT 512MB + CUDA 하드웨어 구조 (0) | 2011.01.02 |
| CUDA on Linux (0) | 2010.12.07 |
| CUDA 예제 컴파일시 오류 (0) | 2010.12.05 |
| A multithreaded program is partitioned into blocks of threads that execute independently from each other, so that a GPU with more cores will automatically execute the program in less time than a GPU with fewer cores. => 멀티쓰레드화된 프로그램은 서로 독립적으로 실행되는 쓰레드의 블럭으로 나누어지며, 그러한 이유로 더욱 많은 코어를 포함하는 CPU는 적은 코어를 지닌 GPU보다 짧은 시간에 프로그램을 실행할 수 있다. |
| MatAdd<<<numBlocks, threadsPerBlock>>>(A, B, C); |
| dim3 threadsPerBlock(16, 16); dim3 numBlocks(N / threadsPerBlock.x, N / threadsPerBlock.y); MatAdd<<<numBlocks, threadsPerBlock>>>(A, B, C); |
| B.15 Execution Configuration Any call to a __global__ function must specify the execution configuration for that call. The execution configuration defines the dimension of the grid and blocks that will be used to execute the function on the device, as well as the associated stream (see Section 3.3.10.1 for a description of streams). When using the driver API, the execution configuration is specified through a series of driver function calls as detailed in Section 3.3.3. When using the runtime API (Section 3.2), the execution configuration is specified by inserting an expression of the form <<< Dg, Db, Ns, S >>> between the function name and the parenthesized argument list, where: Dg is of type dim3 (see Section B.3.2) and specifies the dimension and size of the grid, such that Dg.x * Dg.y equals the number of blocks being launched; Dg.z must be equal to 1; Db is of type dim3 (see Section B.3.2) and specifies the dimension and size of each block, such that Db.x * Db.y * Db.z equals the number of threads per block; Ns is of type size_t and specifies the number of bytes in shared memory that is dynamically allocated per block for this call in addition to the statically allocated memory; this dynamically allocated memory is used by any of the variables declared as an external array as mentioned in Section B.2.3; Ns is an optional argument which defaults to 0; S is of type cudaStream_t and specifies the associated stream; S is an optional argument which defaults to 0. As an example, a function declared as __global__ void Func(float* parameter); must be called like this: Func<<< Dg, Db, Ns >>>(parameter); The arguments to the execution configuration are evaluated before the actual function arguments and like the function arguments, are currently passed via shared memory to the device. The function call will fail if Dg or Db are greater than the maximum sizes allowed for the device as specified in Appendix G, or if Ns is greater than the maximum amount of shared memory available on the device, minus the amount of shared memory required for static allocation, functions arguments (for devices of compute capability 1.x), and execution configuration. |
| Visual Studio 2008 에서 CUDA 프로젝트 만들기 (2) | 2011.01.04 |
|---|---|
| CUDA Toolkit 3.2 (0) | 2011.01.02 |
| CUDA on Linux (0) | 2010.12.07 |
| CUDA 예제 컴파일시 오류 (0) | 2010.12.05 |
| CUDA / Visual Studio 2008 (2) | 2010.12.05 |
| 악 나의 삐뚜러진 필터링 (2) | 2011.01.05 |
|---|---|
| 의사의 초간단 진찰 (4) | 2011.01.04 |
| 냉기 보호막 +1 ? (2) | 2010.12.28 |
| 내 머리속에 도청장치가 있는것 같아! (4) | 2010.12.26 |
| 내년 지름목록! (0) | 2010.12.22 |
| 토르 : 천둥의 신 (Thor, 2011) (8) | 2011.05.01 |
|---|---|
| 언스토퍼블 + CAR (8) | 2011.02.15 |
| 슈퍼배드(2010, 3D) - Despicable me (0) | 2010.09.20 |
| 아바타 특별판(Avatar Special, 1020) (6) | 2010.08.29 |
| 인셉션(Inception 2010) (4) | 2010.08.01 |
최소 시스템 요구사항
[링크 : http://www.nvidia.co.kr/object/geforce_3D_vision_winvista_win7_CD_1.10_kr.html] |
| 으헝헝 노트북 배터리 단종이라니!!!! (0) | 2011.04.18 |
|---|---|
| 배터리야 잘가~ (2) | 2011.04.16 |
| 1인 3pc 시대? (10) | 2010.12.12 |
| 지금까지 컴퓨터를 사용하면서 겪었던 뻘짓들 (4) | 2010.04.15 |
| HP EliteBook 8730 mobile workstation (0) | 2010.02.03 |