search for: daniil

Displaying 20 results from an estimated 20 matches for "daniil".

Did you mean: daniel
2006 Aug 20
3
plot problem
...ain = 4) : plot.new has not been called yet So that plot(..) hasn't been executed before call of title. The most weird about that, if I add fix(vgm1) before dev.set(...), everything is just fine. Why R can't just perform commands one by one? P.S. I use Linux version of R. Thanks, Daniil.
2014 Nov 17
2
[LLVMdev] [llvm][SelectionDAG] trivial patch: fix misprint in SelectionDAGLegalize::ExpandInsertToVectorThroughStack
Alright, go ahead with it. —Owen > On Nov 17, 2014, at 4:58 AM, Daniil Troshkov <troshkovdanil at gmail.com> wrote: > > Hi! > > I have not found test case. (It is because we have no target using "ExpandInsertToVectorThroughStack"). > But I tested it for target currently not included in llvm trunk. > > This fix correct and triv...
2006 May 29
2
Analog to matlab repmat function
...ta,3) in R base <- apply(data,c(2,3,4),mean) # repmat(...,[130 1 1 1]) base <- rep(base,130) dim(base) <- c(11,2,350,130) base <- aperm(base,c(4,1,2,3)) # data = data - repmat data <- data - base; Could you please show me a more elegant way of doing the same in R :) Thanks, Daniil.
2014 Nov 12
2
[LLVMdev] [llvm][SelectionDAG] trivial patch: fix misprint in SelectionDAGLegalize::ExpandInsertToVectorThroughStack
...try to do it ASAP. Have you any ideas about the test case? (targets using ExpandInsertToVectorThroughStack, etc...) On Wed, Nov 12, 2014 at 8:29 PM, Owen Anderson <resistor at mac.com> wrote: > LGTM. Can you supply a testcase? > > —Owen > > > On Nov 12, 2014, at 5:52 AM, Daniil Troshkov <troshkovdanil at gmail.com> > wrote: > > > > Hi Owen! > > > > The "First store the whole vector" is without uses and will be deleted > later. > > I've attached trivial patch to fix it. > > I have no commit access so if patch is...
2014 Jun 03
3
[LLVMdev] [LLVM Doc] tblgen backends
...is very simple: add link at page https://github.com/draperlaboratory/fracture/wiki/How-TableGen%27s-DAGISel-Backend-Works into doc page http://llvm.org/docs/TableGen/BackEnds.html But how I can do it? On Tue, Jun 3, 2014 at 4:41 PM, Renato Golin <renato.golin at linaro.org> wrote: > Hi Daniil, > > Those look great! I think it could be factored into the current docs, > so as to not duplicate the same information in other places, and I'd > love to see it in. > > Are you volunteering for the job? :) > > cheers, > --renato > > On 3 June 2014 13:33, Danii...
2014 Jun 03
2
[LLVMdev] [LLVM Doc] tblgen backends
Hi all! There is doc about tglben backends: http://llvm.org/docs/TableGen/BackEnds.html May be should to add link at https://github.com/draperlaboratory/fracture/wiki/How-TableGen%27s-DAGISel-Backend-Works I remember when I first met the LLVM it would be very useful. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2015 Jul 14
2
[LLVMdev] [llvm] [libunwind] r207467 misprint
Hi Nick! In r207467 you added code(libunwind: DwarfInstructions.hpp): assert(lastReg <= (int)cieInfo.returnAddressRegister && "register range does not contain return address register"); for (int i = 0; i <= lastReg; ++i) { ..... else if (i == (int)cieInfo.returnAddressRegister) There is misprint here: lastReg should be >=
2016 Mar 21
2
transfer FSMO roles from Windows DC
...ner master_owner = res[0]["fSMORoleOwner"][0] I tried Samba 4.4.0rc5 with same result. I also tried this process on Samba-only AD domain and transfer worked correctly. What is the correct way to transfer DomainDnsZonesMasterRole and ForestDnsZonesMasterRole to Samba? Kind regards, Daniil Landau
2017 Mar 21
3
[question] с-double: 35.7 * 100 vs 3570.0
Hi all! There is a simple c code: double a = 3570.0; double b = 35.7 * 100; int main () { if (b != a) return 1; return 0; } It returns 1 due to: 40abe400 00000000 //a = 3570.0 40abe400 00000001 //b = 35.7 * 100; gcc do the same thing, so I think it's ok but why? For floats: float a = 3570.0; float b = 35.7 * 100; int main () { if (b != a) return 1; return 0; } It returns 0...
2014 Nov 12
2
[LLVMdev] [llvm][SelectionDAG] trivial patch: fix misprint in SelectionDAGLegalize::ExpandInsertToVectorThroughStack
Hi Owen! The "First store the whole vector" is without uses and will be deleted later. I've attached trivial patch to fix it. I have no commit access so if patch is OK, please, commit it . Danil. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20141112/52592eeb/attachment.html>
2004 Jan 27
1
iRiver iMP-550
...de when I have time, but can someone explain me what is so special about the 96-256 kbps bitrate range? (I have some guesses, through, that higher bitrate carry more information and should require more synth work, but no clue on lower). --Daniil -- /dev/brains: permission denied Please avoid sending me Word or PowerPoint attachments. See http://www.fsf.org/philosophy/no-word-attachments.html <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list...
2016 Apr 05
3
LTO in LLVM3.8
...ng (unless you're mixing LTO and non-LTO files). I'd guess likely the 'ar' et al needs to be the llvm-ar. I have no experience with LTO in llvm, but with GCC unless one uses the "right" ar, then often LTO information is lost in the archive. On Tue, Apr 5, 2016 at 8:43 AM Daniil Troshkov via llvm-dev < llvm-dev at lists.llvm.org> wrote: > you can also try to find exactly revision number (using binary search > through revisions and using comments in suspicious commits) and try to ask > author directly... at least it will be additional info... > > On Tu...
2014 Oct 13
4
[LLVMdev] Passing llc options to Clang
Hi, Is there a way to passing llc options to clang, for example -march -mcpu, etc. ? Some threads suggested using -mllvm flag, I tried ./clang -mllvm -march=X86-64 -mcpu=core2 -o hello hello.c, but got "Unknown command line argument" Thanks, Ziqiang -------------- next part -------------- An HTML attachment was scrubbed... URL:
2016 Mar 21
0
transfer FSMO roles from Windows DC
On 21/03/16 15:44, Landau Daniil wrote: > I have the Active Directory domain with Windows 2008 R2 domain controller and Samba domain controller on CentOS 7. Samba is 4.3.5 (self-compiled). Forest and domain levels are Windows 2008 R2. > After joining Samba to the domain as the domain controller there were no DC=ForestDnsZone...
2002 Oct 14
1
Reencode ogg/vorbis stream/file with lower bitrate?
Greetings to all, It's been rumored that subj is possible, even with no decoding/encoding the .ogg file, but simply throwing out some information from it. I just wonder: is it really possible, and if yes, if there some software capable of doing this? -- [dan@shinestar ~]$ ls -l /dev/brains ls: /dev/brains: No such file or directory --- >8 ---- List archives:
2007 Dec 11
1
Nokia against the adoption of the Ogg technologies by W3C's HTML5
http://www.w3.org/2007/08/video/positions/Nokia.pdf [...] Anything beyond that, including a W3C-lead standardization of a ?free? codec, or the active endorsement of proprietary technology such as Ogg, ?, by W3C, is, in our opinion, not helpful for the co-existence of the two ecosystems (web and video), and therefore not our choice. [...] Charming. Now they call Ogg a "proprietary
2014 Jun 06
2
[LLVMdev] [LLVM Doc] tblgen backends
On Tue, Jun 3, 2014 at 7:30 AM, Renato Golin <renato.golin at linaro.org> wrote: > On 3 June 2014 14:10, Daniil Troshkov <troshkovdanil at gmail.com> wrote: > > The job is very simple: add link at page > > > https://github.com/draperlaboratory/fracture/wiki/How-TableGen%27s-DAGISel-Backend-Works > > into doc page > > http://llvm.org/docs/TableGen/BackEnds.html > > That&...
2016 Apr 05
2
LTO in LLVM3.8
Hi all, I've been playing around with LLVM and LTO trying to compile some open-source projects. Prior to the 3.8 release I had been using r250630 (if I remember correctly) and I was able to successfully build GamePlay (https://github.com/gameplay3d/GamePlay). Sadly, since upgrading to 3.8 I am getting weird link-time-errors (error: undefined reference to 'XYZ::~XYZ'). It appears
2013 Aug 29
0
[linux-linus test] 18805: regressions - FAIL
...alker <dwalker@fifo99.com> Daniel Walter <sahne@0x90.at> Daniel Willerud <daniel.willerud@stericsson.com> Daniel Woff <wolff.daniel@gmail.com> daniel.borkmann@tik.ee.ethz.ch Daniele Furlan <daniele.furlan@gmail.com> Daniele Palmas <dnlplm@gmail.com> Daniil Bolsun <dan.bolsun@gmail.com> Dann Frazier <dann.frazier@canonical.com> Danny Baumann <dannybaumann@web.de> Danny Huang <dahuang@nvidia.com> Danny Kukawka <danny.kukawka@bisect.de> Dariusz Szymczak <dariusz.xd.szymczak@stericsson.com> Darren Etheridge...
2013 Aug 29
0
[linux-linus test] 18844: regressions - FAIL
...alker <dwalker@fifo99.com> Daniel Walter <sahne@0x90.at> Daniel Willerud <daniel.willerud@stericsson.com> Daniel Woff <wolff.daniel@gmail.com> daniel.borkmann@tik.ee.ethz.ch Daniele Furlan <daniele.furlan@gmail.com> Daniele Palmas <dnlplm@gmail.com> Daniil Bolsun <dan.bolsun@gmail.com> Dann Frazier <dann.frazier@canonical.com> Danny Baumann <dannybaumann@web.de> Danny Huang <dahuang@nvidia.com> Danny Kukawka <danny.kukawka@bisect.de> Dariusz Szymczak <dariusz.xd.szymczak@stericsson.com> Darren Etheridge...