boinc

Ubuntu - how to tell if AVX or SSE, is current being used by CPU app?

与世无争的帅哥 提交于 2021-02-16 15:42:45
问题 I current run BOINC across a number of servers which have GPUs. The servers run both GPU and CPU BOINC apps. As AVX and SSE slow down the CPU freq when being used within a CPU app, I have to be selective which CPU/GPU I run together, as some GPU apps get bottle necked (slower run time completion) where as others do not. At present some CPU apps are named so it is clear to see if they use AVX but most are not. Therefore is there any command I can run, and some way of viewing, to see if any of

Any experience programming for BOINC?

自闭症网瘾萝莉.ら 提交于 2019-12-31 10:43:44
问题 I am attracted by BOINC for a little project of mine. I heard of BOINC but not read much about how it works, mostly because I am focusing on other priorities right now. What I would like to know is if any of you actually tried to program for BOINC and have a program run on the distributed computer network. In particular I am interested in the following questions: How does it work? do you compile the code, post it somewhere and the clients download it and you receive workunit requests and

Any experience programming for BOINC?

穿精又带淫゛_ 提交于 2019-12-31 10:43:26
问题 I am attracted by BOINC for a little project of mine. I heard of BOINC but not read much about how it works, mostly because I am focusing on other priorities right now. What I would like to know is if any of you actually tried to program for BOINC and have a program run on the distributed computer network. In particular I am interested in the following questions: How does it work? do you compile the code, post it somewhere and the clients download it and you receive workunit requests and

How can I turn an XML document into an easy to use C# object?

╄→尐↘猪︶ㄣ 提交于 2019-12-25 05:33:32
问题 The Distributed project "World Community Grid" has the ability to get detailed user information such as: <?xml version="1.0" encoding="UTF-8"?> <MemberStatsWithTeamHistory> <MemberStats> <MemberStat> <Name>makerofthings7</Name> <MemberId>876300</MemberId> <TeamId>0QGNJ4D832</TeamId> <RegisterDate>2013-12-08</RegisterDate> <LastResult>2013-12-11T11:58:51</LastResult> <NumDevices>4</NumDevices> <StatisticsTotals> <RunTime>1290126</RunTime> <RunTimeRank>415174</RunTimeRank> <Points>61710</Points

execute script with C++ [duplicate]

空扰寡人 提交于 2019-12-13 08:37:45
问题 This question already has answers here : How do I execute a command and get the output of the command within C++ using POSIX? (9 answers) How to assign shell command output to a variable in C language (4 answers) Closed 6 years ago . I want to execute a script through a c++ program and get its output. Presently I am doing system("./script.sh > out.txt"); But I need a command that get the output to a string, some thing like: out = system("./script.sh"); printf(out); I can't read the file out