search for: lengthier

Displaying 20 results from an estimated 23 matches for "lengthier".

2019 Nov 27
2
Error while trying to manage file share
...>Connect to another computer). That I am trying without success. When I connect with Windows 7 client I get error message: "Event Viewer cannot connect to computer 'SAMDOM.EXAMPLE.COM. The error ported is: The RPC server is unavailable." When I connect with Windows 10 client I get lengthier but also not helpful error message: "Computer xxx cannot be connected. Verify network paht is correct, ...." The error occurs when clicking to "SystemTools".It still opens System Tools and I can also open Shared Folders->Shares. But there are no shares. (Except IPC$) My Sam...
2007 May 07
2
getting informative error messages
...<- 1; y <- x[list(1:3)]; b <- 2; return(y)} > options(error=NULL) > f(1:3) Error in f(1:3) : invalid subscript type > traceback() 1: f(1:3) > In this function, it's clear that the error is in subscripting 'x', but it's not always so immediately obvious in lengthier functions. Is there anything I can do to get a more informative error message in this type of situation? I couldn't find any help in the section "Debugging R Code" in "R-exts" (or anything at all relevant in "R-intro"). (Different values for options(error=...)...
2010 Mar 09
1
[LLVMdev] HPC framework
...their systems sufficiently well so that the parallelizing could be optimized, the result would be highly portable and efficient. I have created a GitHub repository to work on this idea, although at the moment I have no code. I do have a wiki set up at http://wiki.github.com/guillermin/FPPF/ with a lengthier description of the idea, and the doubts I am having. I would be very interested in hearing from LLVM developers, since I have only started to look at LLVM and still don't fully grasp it. Thank you for your time, Guillermo
2020 Apr 09
2
Supporting freeze in GlobalISel / freeze semantics in MIR
...is now breaking due to GlobalISel not being able to translate this instruction to MIR. We would like to add support for that, but it seems that it is not yet clear how this freeze instruction is supposed to look like in MIR. In [2], which introduced the FREEZE node to SelectionDAG, there was a lengthier discussion which concluded that for now proper handling was only added to SelDAG and the MIR related patches would be left for a follow up. We would like to accelerate this follow up, because we obviously want to get our downstream backend working again. One part of this discussion concerned ho...
2015 Apr 15
2
[LLVMdev] About the "debugger target"
While I've already posted reviews for the initial patches for this (see http://reviews.llvm.org/D8506 and http://reviews.llvm.org/D8599), the grapevine suggests I should post a lengthier description of my intent for the "debugger target." The idea was prompted by a suggestion from Eric Christopher, and I'm running with it. Various bits of the DWARF we produce are conditional on the target platform, or on command-line options with defaults based on the target platfor...
2002 Oct 01
4
Status?
...edia.org) have started promoting it either as an exclusivly-supported audio format or as a choice for publishers. A bulk of the video available on the network is in Real format, the longer we go without a free alternative the more video will continue to be published in non-free formats (and thus a lengthier process to reencode from archives). In the effort of getting Ogg Theora available I'm willing to devote a portion of my time on the Theora project. I'm a coder and because of my work on our audio encoding library for Freeform (one of the codebases for IMC sites) I'm familiar with the...
2019 Oct 02
2
vectorize.enable
...transformations didn't happen in this case, but overall I think this is an improvement. The patch that added the warning as-is was by me (https://reviews.llvm.org/D55288). It changed to emitted message from "loop not vectorized: failed explicitly specified loop vectorization" to the lengthier description following review feedback. It's done by the WarnMissedTransformation and just looks for transformation metadata that is still in the IR after all passes that should have transformed them have ran. That is, it does not know why it is still there -- it could be because the LoopVector...
2019 Nov 27
0
Error while trying to manage file share
...omputer). That I am trying without success. > When I connect with Windows 7 client I get error message: "Event Viewer > cannot connect to computer 'SAMDOM.EXAMPLE.COM. The error ported is: The > RPC server is unavailable." > > When I connect with Windows 10 client I get lengthier but also not helpful > error message: "Computer xxx cannot be connected. Verify network paht is > correct, ...." > > The error occurs when clicking to "SystemTools".It still opens System > Tools and I can also open Shared Folders->Shares. But there are no share...
2001 Nov 14
0
Fitting Pareto dist in a mixture
...han S-language related. The bottom-line wish is: Could you please provide and advice, references, etc on S software approaches for fitting a distribution with density: p*g(x) + (1-p)*f(x) where g(x) is the familiar lognormal 2-parameter density and f(x) is Pareto as defined below? Here is the lengthier story: I am collaborating with a scientific colleague who has constructed a database of binding assay data, namely EC/IC50's across a wide variety of chemical entities and experimental conditions. Among other things, he has an interest in characterizing tails of the distribution. We have been...
2017 Oct 19
0
[Bug 1192] New: ULOGD_RET_RAWSTR type is not listed on ulogd_key_size() and type_to_string()
...uot; 3. Use the ULOGD_RET_IP6ADDR type on IP2BIN (this type doesnt seems to be used anywhere else) and remove ULOGD_RET_RAWSTR ; this type would also need to be added to the __format_query_db switch() on db.c The first 2 solution might be problematic if RAWSTR is used by other plugins to store lengthier informations. Patch proposal implementing the 1st solution and adding the type on type_to_string() : --- src/ulogd.c 2016-12-17 16:25:45.000000000 +0100 +++ src/ulogd.c 2017-10-02 18:01:26.413740164 +0200 @@ -188,6 +188,7 @@ ret = 8; break; case ULOGD_RET_IP6ADDR: +...
2007 Dec 09
1
Setting the grid of a graph of timeseries
I have the following code #################################################################### library(zoo) miedate <- yearmon((2006)+seq(0,23)/12) tab <- zoo(cbind(A = c(79.47, 89.13, 84.86, 75.68, 72.82, 78.87, 93.46, 78.18, 82.46, 77.25, 80.95, 84.39, 81.7, 74.76, 65.29, 60.3, 66.59, 73.19, 92.39, 65.76, 77.45, 74.22, 101.36, 100.01), B = c(77.95, 76.73, 51.2, 51.86, 51.29, 49.45,
2009 Apr 12
3
Running random forest using different training and testing schemes
Hi, I would like to run random Forest classification algorithm and check the accuracy of the prediction according to different training and testing schemes. For example, extracting 70% of the samples for training and the rest for testing, or using 10-fold cross validation scheme. How can I do that? Is there a function? Thanks a lot, Chrysanthi. [[alternative HTML version deleted]]
2012 Mar 28
0
[LLVMdev] GSoC on LLVM usability?
...and the system would remember those already displayed and decrease their frequency of occurence between compilations. All messages would cite the pass name for search in the docs, explain what triggered the optimization, and describe the consequence. Actually I think the messages could be a little lengthier than the example (2-3 lines) to make proper explanations. As for the work plan, it would consist in: _ Enumerating all possible messages in the messages set. _ Implementing a function receiving feedback from each optimization unit and choosing whether to display it: info_printf(enum INFO_INDEX,...
2016 May 14
0
Boot prompt ignored
...> build in Arch Linux' repository. > > After building Syslinux from the official source, it boots any label > entered during boot prompt correctly. (I have not tested removing the > DEFAULT statement, though) > > > Thank you for your help - Alex My emails tend to be lengthier than others, in an _attempt_ to be clear, especially to common users whose natural language is other than English. Unfortunately, some of my emails seem to be ignored. As I already reported, this is not specific to ArchLinux, as it can be also found in Debian (Testing) and Fedora 24 too (and v...
2012 Mar 23
2
[LLVMdev] GSoC on LLVM usability?
Hello all, My name is Thibault Raffaillac, degree student at KTH, Stockholm, Sweden (in double-degree partnership with Ecole Centrale Marseille, France). I am currently carrying my degree thesis on the usability of compilers, and as such would be very much interested in contributing to LLVM through a Google Summer of Code. The task I would like to propose is implementing the work from my thesis:
2019 Oct 02
2
vectorize.enable
Hi Michael and Florian, ( + llvm-dev for visibility) I would like to quickly follow up on "Pragma vectorize_width() implies vectorize(enable)", which got reverted with commit 858a1ae for 2 reasons, see also that revert commit message. Ignore the assert, that's been fixed now. The other thing is that with the patch behaviour is slightly changed and we could get a diagnostic we
2015 Jul 14
3
[LLVMdev] GlobalsModRef (and thus LTO) is completely broken
----- Original Message ----- > From: "Chris Lattner" <clattner at apple.com> > To: "Chandler Carruth" <chandlerc at gmail.com> > Cc: "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu>, "Hal Finkel" <hfinkel at anl.gov>, "Justin Bogner" > <mail at justinbogner.com>, "Duncan Exon Smith"
2019 Nov 27
4
Error while trying to manage file share
...trying without success. >> When I connect with Windows 7 client I get error message: "Event Viewer >> cannot connect to computer 'SAMDOM.EXAMPLE.COM. The error ported is: The >> RPC server is unavailable." >> >> When I connect with Windows 10 client I get lengthier but also not >> helpful error message: "Computer xxx cannot be connected. Verify network >> paht is correct, ...." >> >> The error occurs when clicking to "SystemTools".It still opens System >> Tools and I can also open Shared Folders->Shares. Bu...
2016 May 14
2
Boot prompt ignored
On Sat, May 07, 2016 at 09:56:59PM +0300, Ady via Syslinux wrote: > On Sun, May 01, 2016 at 11:58:41AM +0200, Alexander Freudenberg via Syslinux wrote: > > Using a boot prompt without a menu makes Syslinux 6.03-6 booting the > > default label only, ignoring the label that was entered. Auto completion > > of the defined labels works, though. Can anyone confirm this? > >
2012 Jan 17
2
pscl package and hurdle model marginal effects
This request is related to the following post from last year: https://stat.ethz.ch/pipermail/r-help/2011-June/279752.html After reading the thread, the idea is still not clear. I have fitted a model using HURDLE from the PSCL package. I am trying to get marginal effects / slopes by multiplying the coefficients by the mean of the marginal effects (I think this is right). To my understanding, this