Привіт Гість ( Вхід | Реєстрація )

> Boinc-client Version 6.x.x, Обсуждение работы шестой версии клиента
(_KoDAk_)
Apr 5 2008, 23:49
Пост #1


BOINC-guru
*********

Група: Trusted Members
Повідомлень: 3 662
З нами з: 11-August 07
З: Kharkov
Користувач №: 569
Стать: Чол
Парк машин:
E3-1245V2@3400-Mhz 16GB 1х GTX760DCMOC2GD5 Q8200@2300-Mhz 4GB + то там то сям



ПОЛНАЯ история изменений версий BOINC с датами выхода релизов

Change Log для 6.11.хх

BOINC (6 - 6.10.58) Versions Change Log

BOINC 6.7/6.8/GR6.8 Change Log

Все версии боинка для закачки

ВСЕ ВЕРСИИ С 5-й по 6-ю <- РЕКОМЕНДУЕТСЯ КАЧАТЬ ОТСЮДА.

все версии, включая самые последние девелоперские!

официальный форум разработчиков (зарегистрироваться)


--------------------
- "ты говоришь так, будто тебя чай ваше не вставляет "

(Show/Hide)











Спаcибо автору алфавита за любезно предоставленные буквы.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
27 Сторінки V « < 14 15 16 17 18 > »   
Reply to this topicStart new topic
Відповідей(225 - 239)
(_KoDAk_)
Jul 22 2009, 20:46
Пост #226


BOINC-guru
*********

Група: Trusted Members
Повідомлень: 3 662
З нами з: 11-August 07
З: Kharkov
Користувач №: 569
Стать: Чол
Парк машин:
E3-1245V2@3400-Mhz 16GB 1х GTX760DCMOC2GD5 Q8200@2300-Mhz 4GB + то там то сям



6.6.38 Change Log:

Rom 17 July 2009
- Not used by the client software (zip)

Rom 21 July 2009
- GUI RPC: add get_message_seqno() RPC. fixes #931
- client: error if a <file_info> in app_info.xml has any URLs
- client: don't write file_infos with no URLs to client_state.xml for anon platform project; they must be from app_info.xml
- client: restored code for project-wide backoff on file uploads and downloads. I originally added this on 30 Sept 2005 and disabled it 2 weeks later because there were reports of problems. However, we need this functionality (e.g. on GPU hosts with hundreds of files to upload, we need to back off after a few failures, not try all of them). I added messages (<file_xfer_debug>) so you can see what's going on. Fixes #932.
- client: if malloc fails in MFILE writes, exit. We don't check the return values of printf() anywhere, and it's dangerous for the client to continue if it thinks something got written that didn't. Fixes #281
- client: code cleanup for project-level file xfer backoff
- client/manager/GUI RPC: show project-level backoffs
- client: changed file upload logic
Old: each upload attempt consists of two HTTP requests:
the 1st to get the current file size on server,
the 2nd to upload the remainder of the file.

Problem:
a) if the upload server is overloaded and requests are succeeding with probability X, then the chance of both requests succeeding is X2. So e.g. a per-request success rate of 0.1 becomes an overall success rate of 0.01.

b) the "get file size" request can be avoided in some cases.

New:
If we've already queried the file size and haven't uploaded any additional bytes, don't query the file size again.

- client: if file < 8KB, upload it in its entirety and skip size check
- client: (refinement to previous checkin) don't skip file size check if file has multiple upload URLs. We might have uploaded different amounts on different servers.
- client: change the way a resource's "estimated delay" (passed to server for crude deadline check) is computed.

Old: estimated delay is the interval for which the resource is fully used (i.e., all instances busy).

Problem: this may cause unnecessary project starvation.
example: 1 CPU machine, has a month-long CPDN job with a 1-year deadline (it's not in deadline trouble). Then the CPU estimated delay will be 1 month, and the client won't get any work from projects with deadlines shorter than 1 month.

New: estimated delay is the latest time at which the resource is fully used and is being used by at least 1 job that is projected to miss its deadline under RR.

Note: this isn't precise, but I don't think we can improve it much without getting a lot more complex.

client: 2nd try on my last checkin.

We need to estimate 2 different delays for each resource type:
1) "saturated time": the time the resource will be fully utilized (new name for the old "estimated delay"). This is used to compute work requests.
2) "busy time": the time a new job would have to wait to start using this resource. This is passed to the scheduler and used for a crude deadline check.

Note: this is ill-defined; a single number doesn't suffice. But as a very rough estimate, I'll use the sum of (J.duration * J.ninstances)/ninstances over all jobs that miss their deadline under RR sim.

- Quick Updates
- Tag for 6.6.38 release, all platforms boinc_core_release_6_6_38

David 21 July 2009
- lib: gcc 4.4 fix; fixes #854


--------------------
- "ты говоришь так, будто тебя чай ваше не вставляет "

(Show/Hide)











Спаcибо автору алфавита за любезно предоставленные буквы.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
(_KoDAk_)
Jul 28 2009, 12:35
Пост #227


BOINC-guru
*********

Група: Trusted Members
Повідомлень: 3 662
З нами з: 11-August 07
З: Kharkov
Користувач №: 569
Стать: Чол
Парк машин:
E3-1245V2@3400-Mhz 16GB 1х GTX760DCMOC2GD5 Q8200@2300-Mhz 4GB + то там то сям



вот что нас ждет в 6.6.39 но его еще НЕ скомпилировали (вероятно еще что-то д оисправляют)
Rom 17 July 2009
- Upgrade to OpenSSL 0.9.8k

David 17 July 2009
- A place to store various project libraries shared amongst various projects.
- Move the BOINC compatible InfoZip

David 22 July 2009
- client: add a bunch of debugging messages (<task_debug>) for showing how GPU instances are being reserved
- scheduler: add "sse3" plan class example
- web: add option (NO_TEAMS constant) for suppressing teams
- client: define "too many uploads" (for work fetch) as 2 * max(ncpus, ngpus);
show this in the state displayed by <work_fetch_debug>
- manager: show project-wide backoff in transfers tab

Rom 23 July 2009
- client: Remove some more Win9x code.
- client: Add some messages while handling Windows power events.
- client: Treat power events similiar to the snooze events, assign a timeout so that when we resume from suspend/hibernate we restore the previous activity states.
- WINSETUP: Prevent a pathing problem with the client_auth.xml creation by prepending a \ in front of the filename.

David 23 July 2009
- manager: fix typos in attach project wizard

Rom 24 July 2009
- client: in get_project_config_poll() GUI RPC, return ERR_IN_PROGRESS is the reference site check is in progress. This hopefully fixes a bug where:

* the user is connected via a proxy
* the manager is run for the first time, and an attach is tried
* the get_project_config.php fetch fails because no proxy config
* the manager gets the CC_STATUS before the ref site check has finished, so it thinks there's a network connection, and it doesn't ask the user for proxy info.

- lib: more code cleanup
- lib: revert previous commit, things in lib end up being linked into project applications, projects may want to continue supporting Win9x.
- WINSCR: Remove Win9x compatibility code from the screen saver.
- MGR: Use the BOINC Service Control utility (boincsvcctrl.exe) to start/stop the BOINC Service on Windows now. Starting with Windows Vista a normal admin account is started with a restricted token, meaning that a process has to be elevated in order to start and stop services. The recommended way to handle this whole process is to create a stub application that has an application manifest embedded within it that tells Windows that full admin rights are required and then launch that program (boincsvcctrl.exe) from the application (boincmgr.exe) which normally runs with the restricted token.
- MGR: Be sure to launch the default screensaver in test mode when the manager is starting up, otherwise the default screensaver might lock up waiting on user input to approve firewall updates to the rule set.

Rom 25 July 2009
- MGR: Refine todays checkin with support for the BOINC Service Control utility, don't use the run-as verb on systems older than Vista.


--------------------
- "ты говоришь так, будто тебя чай ваше не вставляет "

(Show/Hide)











Спаcибо автору алфавита за любезно предоставленные буквы.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
(_KoDAk_)
Aug 23 2009, 23:01
Пост #228


BOINC-guru
*********

Група: Trusted Members
Повідомлень: 3 662
З нами з: 11-August 07
З: Kharkov
Користувач №: 569
Стать: Чол
Парк машин:
E3-1245V2@3400-Mhz 16GB 1х GTX760DCMOC2GD5 Q8200@2300-Mhz 4GB + то там то сям



6.10.0
новая теставая верси
по ка нет списка именения (
но точ но есть
- client: ATI GPU detection code (from Crunch3r)

и результат
24.08.2009 0:14:13 Starting BOINC client version 6.10.0 for windows_x86_64
24.08.2009 0:14:13 Processor: 4 GenuineIntel Intel® Core™2 Quad CPU Q6600 @ 2.40GHz [Intel64 Family 6 Model 15 Stepping 11]
24.08.2009 0:14:13 Processor: 4.00 MB cache

24.08.2009 0:14:14 ATI GPU 0: RV770 (CAL version , 512MB, 1064GFLOPS)


--------------------
- "ты говоришь так, будто тебя чай ваше не вставляет "

(Show/Hide)











Спаcибо автору алфавита за любезно предоставленные буквы.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
(_KoDAk_)
Aug 23 2009, 23:19
Пост #229


BOINC-guru
*********

Група: Trusted Members
Повідомлень: 3 662
З нами з: 11-August 07
З: Kharkov
Користувач №: 569
Стать: Чол
Парк машин:
E3-1245V2@3400-Mhz 16GB 1х GTX760DCMOC2GD5 Q8200@2300-Mhz 4GB + то там то сям



вот тока милка перестала считать (((
ой ** не трогайте ее
фу


--------------------
- "ты говоришь так, будто тебя чай ваше не вставляет "

(Show/Hide)











Спаcибо автору алфавита за любезно предоставленные буквы.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Rilian
Aug 23 2009, 23:28
Пост #230


interstellar
**********

Група: Team member
Повідомлень: 17 163
З нами з: 22-February 06
З: Торонто
Користувач №: 184
Стать: НеСкажу
Free-DC_CPID
Парк машин:
ноут и кусок сервера



QUOTE((_KoDAk_) @ Aug 24 2009, 00:01) *

6.10.0
новая теставая верси


у меня при переходе 6.6.36 -> 6.10.0 на Mac OS 10.5.8 ПОЛНОСТЬЮ слетели настройки. При запуске не смогло перезаписать файлы


--------------------
(Show/Hide)


IPB Image

IPB Image

IPB Image
IPB Image

загальна статистика: BOINCstats * FreeDC команда: BOINC команда Ukraine

IPB Image

IPB Image
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
(_KoDAk_)
Aug 23 2009, 23:30
Пост #231


BOINC-guru
*********

Група: Trusted Members
Повідомлень: 3 662
З нами з: 11-August 07
З: Kharkov
Користувач №: 569
Стать: Чол
Парк машин:
E3-1245V2@3400-Mhz 16GB 1х GTX760DCMOC2GD5 Q8200@2300-Mhz 4GB + то там то сям



а ті вігрузил до єтого его ?
но что-то стремная верся єто так что ждем следующюю

p.s.
1064GFLOPS у 4850
59GFLOPS у 9600GSO
АФИГЕТТЬЬЬ)


--------------------
- "ты говоришь так, будто тебя чай ваше не вставляет "

(Show/Hide)











Спаcибо автору алфавита за любезно предоставленные буквы.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Rilian
Aug 24 2009, 09:45
Пост #232


interstellar
**********

Група: Team member
Повідомлень: 17 163
З нами з: 22-February 06
З: Торонто
Користувач №: 184
Стать: НеСкажу
Free-DC_CPID
Парк машин:
ноут и кусок сервера



QUOTE((_KoDAk_) @ Aug 24 2009, 00:30) *

а ті вігрузил до єтого его ?
но что-то стремная верся єто так что ждем следующюю


нет, прошлую версию не выключал. инсталлер ее сам обычно выключает (как было в 10 последних версиях что я устанавливал)


--------------------
(Show/Hide)


IPB Image

IPB Image

IPB Image
IPB Image

загальна статистика: BOINCstats * FreeDC команда: BOINC команда Ukraine

IPB Image

IPB Image
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Rilian
Aug 25 2009, 12:08
Пост #233


interstellar
**********

Група: Team member
Повідомлень: 17 163
З нами з: 22-February 06
З: Торонто
Користувач №: 184
Стать: НеСкажу
Free-DC_CPID
Парк машин:
ноут и кусок сервера



В 6.10.х версии появилась новая полезная фича на странице тасков. "Show only active tasks" оставит в списке только активные незавершенные таски, а те что ждут отправки будут скрыты


--------------------
(Show/Hide)


IPB Image

IPB Image

IPB Image
IPB Image

загальна статистика: BOINCstats * FreeDC команда: BOINC команда Ukraine

IPB Image

IPB Image
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
(_KoDAk_)
Aug 27 2009, 08:07
Пост #234


BOINC-guru
*********

Група: Trusted Members
Повідомлень: 3 662
З нами з: 11-August 07
З: Kharkov
Користувач №: 569
Стать: Чол
Парк машин:
E3-1245V2@3400-Mhz 16GB 1х GTX760DCMOC2GD5 Q8200@2300-Mhz 4GB + то там то сям



и так вышел 6.10.1


--------------------
- "ты говоришь так, будто тебя чай ваше не вставляет "

(Show/Hide)











Спаcибо автору алфавита за любезно предоставленные буквы.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Death
Aug 31 2009, 00:33
Пост #235


<script ///>
**********

Група: Moderators
Повідомлень: 6 371
З нами з: 5-November 03
З: Kyiv
Користувач №: 26
Стать: НеСкажу
Free-DC_CPID
Парк машин:
гидропарк
jabber:deadjdona@gmail.com



спицально для яблочнегов

Name Last modified Size Description

--------------------------------------------------------------------------------


boinc_6.10.2_i686-pc-linux-gnu.sh 28-Aug-2009 09:23 4.0M
boinc_6.10.2_universal-apple-darwin.zip 27-Aug-2009 15:26 1.2M
boinc_6.10.2_macOSX_universal.zip 27-Aug-2009 15:26 6.6M
boinc_6.10.2_macOSX_SymbolTables.zip 27-Aug-2009 15:26 6.1M


--------------------
wbr, Me. Dead J. Dona OGR-27
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
(_KoDAk_)
Aug 31 2009, 07:51
Пост #236


BOINC-guru
*********

Група: Trusted Members
Повідомлень: 3 662
З нами з: 11-August 07
З: Kharkov
Користувач №: 569
Стать: Чол
Парк машин:
E3-1245V2@3400-Mhz 16GB 1х GTX760DCMOC2GD5 Q8200@2300-Mhz 4GB + то там то сям



- Change version number to 6.10.x
Howdy Folks,

We are beginning a new test cycle. The only new feature for this release is going to be ATI GPU support. Please do report any bugs you find.

Given the limited number of changes needed to support the ATI GPU we think we'll be able to move this along into a public release pretty quickly as the ATI GPU scheduling code is the same as the Nvidia GPU scheduling code.

I believe MilkyWay is going to be adding an official ATI GPU app to their mix soon, for the time being please report any problems with the client detecting your ATI GPU.

- MGR: Remove News page.
- Tag for 6.10.0 release, all platforms boinc_core_release_6_10_0
- Mac SS: Changes for compatibility with OS 10.6

- Mac client: use rss keyword not rsz in ps command for OS 10.6 compatibility.
- client: Attempt to prevent a crash via a C++ exception by checking for a -1 index before attempting erase the rest of the proxy list.
- manager: allow 24:00 to be used in advanced prefs dialog (from Ian Hay; fixes #357)

- client and scheduler: lay the groundwork for "fractional coproc jobs", e.g. the Milkyway@home ATI app, of which we can typically run 2 or 3 instances at once on a GPU.

Changes include:
* In APP_VERSION, don't use a COPROCS to represent the GPU requirements; just use doubles ncudas and natis.

* sufficient_coprocs() etc. are no longer members of COPROCS.

* in HOST_USAGE, ncudas and natis are doubles.

* in scheduler request, req_instances is now a double.
This checkin doesn't include the job scheduling logic, i.e. assigning jobs to GPUs. That will follow.

- client: finish the implementation of fractional coproc jobs.

* different data structure for keeping track of coproc usage; instead of COPROC having per-instance pointers to ACTIVE_TASK, ACTIVE_TASK now has an array of device number indices for each instance that it's using.

* in enforce_schedule(), we call a new function assign_coprocs() that decides what coproc instances each job will use, and prunes jobs for which we can't get an assignment. This function embodies lots of subtlety.

* coproc_cmdline() no longer deals with reserving instances; it just has to generate the --device X cmdline

- fixes to coproc stuff

- client: use the right library name for ATI on Linux

- client: check return values from ATI device detection functions

- client: in parsing <coproc> elements in <app_version>, use a new type COPROC_REQ for which the count field is a double. Otherwise fractional GPU jobs don't work.

- Fix build breaks caused by a bad merge

- Tag for 6.10.1 release, all platforms boinc_core_release_6_10_1

- Linux MGR: bug fixes, new args and code for starting Client, testing if Client running

- Bump version to 6.10.2

- Fix more build breaks caused by a bad merge

- Quick Updates


--------------------
- "ты говоришь так, будто тебя чай ваше не вставляет "

(Show/Hide)











Спаcибо автору алфавита за любезно предоставленные буквы.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Rilian
Aug 31 2009, 09:12
Пост #237


interstellar
**********

Група: Team member
Повідомлень: 17 163
З нами з: 22-February 06
З: Торонто
Користувач №: 184
Стать: НеСкажу
Free-DC_CPID
Парк машин:
ноут и кусок сервера



на macos 10.6 snow leopard BOINC 6.10.2 вообще не ставится sad.gif


--------------------
(Show/Hide)


IPB Image

IPB Image

IPB Image
IPB Image

загальна статистика: BOINCstats * FreeDC команда: BOINC команда Ukraine

IPB Image

IPB Image
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
(_KoDAk_)
Aug 31 2009, 14:36
Пост #238


BOINC-guru
*********

Група: Trusted Members
Повідомлень: 3 662
З нами з: 11-August 07
З: Kharkov
Користувач №: 569
Стать: Чол
Парк машин:
E3-1245V2@3400-Mhz 16GB 1х GTX760DCMOC2GD5 Q8200@2300-Mhz 4GB + то там то сям



Rilian,
пиши им сюда
: BOINC support for MAC OSX 10.6.0 Snow Leopard.


--------------------
- "ты говоришь так, будто тебя чай ваше не вставляет "

(Show/Hide)











Спаcибо автору алфавита за любезно предоставленные буквы.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Rilian
Aug 31 2009, 14:48
Пост #239


interstellar
**********

Група: Team member
Повідомлень: 17 163
З нами з: 22-February 06
З: Торонто
Користувач №: 184
Стать: НеСкажу
Free-DC_CPID
Парк машин:
ноут и кусок сервера



QUOTE((_KoDAk_) @ Aug 31 2009, 15:36) *

я тему в boinc alpha test форуме создал


--------------------
(Show/Hide)


IPB Image

IPB Image

IPB Image
IPB Image

загальна статистика: BOINCstats * FreeDC команда: BOINC команда Ukraine

IPB Image

IPB Image
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
tiss
Aug 31 2009, 17:40
Пост #240


Мега ранчер
********

Група: Trusted Members
Повідомлень: 1 640
З нами з: 28-February 09
Користувач №: 952
Стать: Чол
Free-DC_CPID



На 6.10.1 х64 у меня Энигма как считалась, так и продолжает считаться, милкивей как вышибал периодически клиента так и продолжает вышибать.


--------------------
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

27 Сторінки V « < 14 15 16 17 18 > » 
Reply to this topicStart new topic
1 Користувачів переглядають дану тему (1 Гостей і 0 Прихованих Користувачів)
0 Користувачів:

 



- Lo-Fi Версія Поточний час: 28th September 2025 - 00:54