결론만 말하자면, SLI는 복수개의 (대개는 2개지만) 그래픽 카드를 1개의 논리 그래픽 카드로 만들어서 사용하는 것이므로,
CUDA에서 1개의 그래픽 카드로 인식, BOINC에서 1개분의 속도 밖에 나오지 않는 것으로 추측된다.

Posted 10 Feb 2009 13:42:02 UTC
Correction. SLI means that you have two or more graphics cards working as one, with a single output. BOINC will recognize all the cards, but it will only use one card due to it being used in SLI mode. Seti CUDA will then only work on one card.

[링크 : http://setiathome.berkeley.edu/forum_thread.php?id=51951]

Posted 31 Jan 2009 19:22:14 UTC
SLI basically combines 2 (or more) matched GPU devices into 1 logical GPU device. When in SLI mode, the system sees only 1 logical GPU and unfortunately for CUDA this means that it only has visibility to 1 physical device (not 2, 3 or 4). Disabling SLI mode for CUDA is best because it allows SETI to take advantage of each GPU as its own device.

[링크 : http://boinc.berkeley.edu/dev/forum_thread.php?id=3592]

'프로그램 사용 > BOINC - seti@home' 카테고리의 다른 글

BOINC with CUDA  (2) 2010.10.17
BOINC 설치시 리부팅 안하면?  (0) 2010.10.17
Seti@home 랭킹  (2) 2009.11.09
BOINC 버전업  (0) 2009.11.04
seti@home boinc manger 설정하기 - WU 미리 받아 놓기  (0) 2009.10.28
Posted by 구차니
이미지를 드래그로 끌어다 놓을경우, 링크로 첨부가 된다.

파일에 포함을 시키기 위해서는 반드시 메뉴에서 추가해야 한다.
단, "삽입 - 그림 - 파일로부터"를 이용하면 한번에 하나의 이미지만을 삽입할수 있다.


삽입으로 넣으면 "비트맵 선택됨" 으로 출력이 되고, 문서 파일에 이미지가 첨부된다.

하지만, 드래그로 이미지를 넣으면 "연결된 비트맵 선택됨" 으로 출력되고,
링크로 들어가므로 다른 PC에서 깨진 이미지로 나오게 된다.

Posted by 구차니
프로그램 사용/GIMP2010. 10. 4. 16:19
GIMP에서 TEXT layer를 저장시, 이미지로 저장되기 때문에 다시 text로 편집을 할 수 없다.

저장하고 나서 까지는 Text layer로 인식하지만

저장후 닫고, 다시 읽어 오면 이미지로 인식을 한다.


포토샾에서 확인을 해보진 않았지만, 포토샾에서는 text layer로 읽어 온다고 한다.
이 문제를 해결하려면 xcf 라는 김프전용 확장자를 쓰는수 밖에 없는듯 -_-

[링크 : http://www.warriorforum.com/blogs/e-mail2u/963-psd-text-layers-gimp-how.html]

Posted by 구차니
프로그램 사용/nmap2010. 10. 1. 15:25
nmap이 나 같은 귀차니즘 유저들을 위해 GUI 프로그램이 나왔다 -_-
솔찍히 지금도 쓰는방법을 모르면 쓰기 힘든건 마찬가지이긴 하지만..


아무튼 매우 깔끔하다.

[링크 : http://nmap.org/]

'프로그램 사용 > nmap' 카테고리의 다른 글

nmap CVE report  (0) 2019.06.05
eth 1394에서의 nmap 실행 실패  (0) 2011.12.31
nmap 도움말  (2) 2010.10.11
Posted by 구차니
ini 파일 스타일로 다국어를 지원하는 프로젝트를 보고 나서
문득 생각이 나서 퇴근길에 검색하게 된 녀석인데..

ini 파일 스타일로 하는건 어떠한 규칙에 따라서 임의로 만든 라이브러리로 ini에서 읽어오는 것으로 추측된다
Visual Studio에서 정식적으로 지원하는건, "String Table"을 로케일(Locale) 별로 나누는 것이다.

Step 1. resource - String Table 에서 "Insert Copy" 를 한다.

Step 2. 원하는 언어명을 추가한다.

Step 3. 번역한다

주의사항 : 원본 문자열에서 copy를 하고 원본에 새로운 문자열을 추가할 경우
               추가된 문자열은 다른 언어에 추가되지 않는다.




[링크 : http://www.devpia.com/MAEUL/Contents/Detail.aspx?BoardID=51&MAEULNo=20&no=7281]
    [링크 :  http://www.codeguru.com/cpp/misc/misc/multi-lingualsupport/]]
    [링크 :  http://www.codeguru.com/cpp/misc/misc/multi-lingualsupport/article.php/c381/...]
    [링크 :  http://www.codeguru.com/cpp/misc/misc/multi-lingualsupport/article.php/c297/...]

[링크 : http://www.devpia.com/MAEUL/Contents/Detail.aspx?BoardID=50&MAEULNo=20&no=684772&ref=684672]


2010.09.28 추가
VS2010 MFC 프로젝트에서는 String Table이 자동생성되지 않았다.
하지만 생성하고 나서는 VC++6과 동일한 방법으로 다국어 테이블을 생성할 수 있다.


Posted by 구차니
프로젝트 속성 페이지(Alt-F7) - 구성 속성 - 링커 - 시스템 - 스택 예약 크기
VC++6.0과 마찬가지로 기본 스택 크기는 1MB로 잡혀있다.



2009/08/26 - [Programming/C / Win32 / MFC] - Visual Studio C++ 6.0 프로그램의 스택 사이즈

Posted by 구차니
프로그램 사용/coLinux2010. 9. 26. 15:50
안됩니다!

라고 소쿨하게 대답해주는 센스 -_-

Q39. Does coLinux take advantage of dual core processors?

No, CoLinux is able to use only one CPU. Bear this in mind when speccing a machine to run coLinux on. A quad-core processor might seem like a good idea, however the more cores you have, the slower they are clocked. And coLinux is only going to be able to run on a single core.


[링크 : http://colinux.wikia.com/wiki/FAQ]

portable ubuntu 에서 cpu정보를 확인하면, cpu 모델명은 제대로 인식하지만
linux kernel에서 멀티코어를 지원하지 않아 부팅로그 상에서는 CPU#0만 존재하고 CPU#1이 존재하지 않는다.

$ dmesg | grep CPU
Initializing CPU#0
CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 4200+ stepping 02

$ cat /proc/cpuinfo
processor    : 0
vendor_id    : AuthenticAMD
cpu family    : 15
model        : 107
model name    : AMD Athlon(tm) 64 X2 Dual Core Processor 4200+
stepping    : 2
cpu MHz        : 2435.000
cache size    : 512 KB
fdiv_bug    : no
hlt_bug        : no
f00f_bug    : no
coma_bug    : no
fpu        : yes
fpu_exception    : yes
cpuid level    : 1
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt rdtscp lm 3dnowext 3dnow pni cx16 lahf_lm cmp_legacy svm extapic cr8_legacy 3dnowprefetch
bogomips    : 10511.97
clflush size    : 64
cache_alignment    : 64
address sizes    : 40 bits physical, 48 bits virtual
power management: ts fid vid ttp tm stc 100mhzsteps




Posted by 구차니
프로그램 사용/xen2010. 9. 24. 14:17
Z520 / E620 이상의 모델에서만 VT-x를 지원한다.
XEN 따위 할려다가 초가삼간 태울지경이군 ㅠ.ㅠ

 Product NameEmbeddedMax TDPCores / ThreadsIntel® Virtualization Technology (VT-x)Integrated GraphicsIntel® Turbo Boost TechnologyEstimated 1k Unit PriceStatus
Intel® Atom™ Processor Z560
(512K Cache, 2.13 GHz, 533 MHz FSB)
No 2.5 Watts 1C / 2T Yes   No N/A Launched
Intel® Atom™ Processor Z550
(512K Cache, 2.00 GHz, 533 MHz FSB)
No 2.4 Watts 1C / 2T Yes   No N/A Launched
Intel® Atom™ Processor Z540
(512K Cache, 1.86 GHz, 533 MHz FSB)
No 2.4 Watts 1C / 2T Yes   No N/A Launched
Intel® Atom™ Processor Z530P
(512K Cache, 1.60 GHz, 533 MHz FSB)
Yes 2.2 Watts 1C / 2T Yes   No N/A Launched
Intel® Atom™ Processor Z530
(512K Cache, 1.60 GHz, 533 MHz FSB)
Yes 2 Watts 1C / 2T Yes   No N/A Launched
Intel® Atom™ Processor Z520PT
(512K Cache, 1.33 GHz, 533 MHz FSB)
Yes 2.2 Watts 1C / 2T Yes   No N/A Launched
Intel® Atom™ Processor Z520
(512K Cache, 1.33 GHz, 533 MHz FSB)
No 2 Watts 1C / 2T Yes   No N/A Launched


Intel® Atom™ Processor E680T
(512K Cache, 1.60 GHz)
Yes 3.9 Watts 1C / 2T Yes Yes   $85.00 Launched
Intel® Atom™ Processor E680
(512K Cache, 1.60 GHz)
Yes 3.9 Watts 1C / 2T Yes Yes   $74.00 Launched
Intel® Atom™ Processor E660T
(512K Cache, 1.30 GHz)
Yes 3.3 Watts 1C / 2T Yes Yes   $64.00 Launched
Intel® Atom™ Processor E660
(512K Cache, 1.30 GHz)
Yes 3.3 Watts 1C / 2T Yes Yes   $54.00 Launched
Intel® Atom™ Processor E640T
(512K Cache, 1.00 GHz)
Yes 3.3 Watts 1C / 2T Yes Yes   $37.00 Launched
Intel® Atom™ Processor E640
(512K Cache, 1.00 GHz)
Yes 3.3 Watts 1C / 2T Yes Yes   $29.00 Launched
Intel® Atom™ Processor E620T
(512K Cache, 600 MHz)
Yes 2.7 Watts 1C / 2T Yes Yes   $22.00 Launched
Intel® Atom™ Processor E620
(512K Cache, 600 MHz)
Yes 2.7 Watts 1C / 2T Yes Yes   $19.00 Launched


[링크 : http://ark.intel.com/ProductCollection.aspx?familyID=29035]

'프로그램 사용 > xen' 카테고리의 다른 글

Xen on Ubuntu 11.10  (0) 2012.03.25
kvm - Kernel mode Virtual Machine  (0) 2012.03.06
xen 사용가능한 cpu 확인하기  (0) 2012.01.25
xen 설치관련 문서링크  (0) 2010.11.14
xen  (0) 2010.08.16
Posted by 구차니
프로그램 사용2010. 9. 20. 22:21
jwmx 님의 공동 문서 작업의 최고 툴 - 구글 문서도구 라는 글을 보고
문득 google docs를 써보고 싶다는 생각이 들었는데..

헐! 블로그에서 사진을 빼오기 위해 Javascript 우클릭 막기를 꺼놔서 이런 불상사가 발생!

   

어쩔수 없이 다시 우클릭 사용을 막을수 있도록 설정 OTL


음.. 그런데 왜 내 google docs에.. Mr.Dust 님의 글이 남아있는걸까 -_-?

'프로그램 사용' 카테고리의 다른 글

freegate - open proxy 프로그램  (2) 2010.12.30
ftp로 xmark를 사용하기  (6) 2010.10.18
빵집과 7zip - ISO/UDF 관련  (2) 2010.09.07
infrarecorder - DVD 오버버닝 안됨  (0) 2010.08.08
flash embed 시의 시작경로  (2) 2010.07.18
Posted by 구차니
아이콘 정도는 좀 유지해달라구 ㅠ.ㅠ
아니.. 그걸 떠나서 한글과 영어의 차이일려나?

한글버전 Visual Studio가 어색한 1인! ㅠ.ㅠ


VS2010 / VS6
Posted by 구차니