search for: _flag

Displaying 14 results from an estimated 14 matches for "_flag".

Did you mean: flag
2020 Sep 22
2
Unifying CMake variable names used in checks across subprojects
...and we're very happy with it. However, with an increasing number of targets, it can be fairly slow and I have noticed that we now spend more time in CMake than in Ninja. There are various ways we could improve things like eliminating unnecessary checks. When running checks like check_c_compiler_flag, check_cxx_compiler_flag or check_library_exists, CMake caches the resulting variable and doesn't run the check again. The problem is that in LLVM, each subproject uses different variable names for results of these checks. For example, most subprojects check if pthread is available and store th...
2020 Sep 22
2
Unifying CMake variable names used in checks across subprojects
...;re very happy with it. However, with an increasing number of targets, it can be fairly slow and I have noticed that we now spend more time in CMake than in Ninja. There are various ways we could improve things like eliminating unnecessary checks. > > When running checks like check_c_compiler_flag, check_cxx_compiler_flag or check_library_exists, CMake caches the resulting variable and doesn't run the check again. The problem is that in LLVM, each subproject uses different variable names for results of these checks. For example, most subprojects check if pthread is available and store th...
2020 Sep 25
2
Unifying CMake variable names used in checks across subprojects
...happy with it. However, with an increasing number of targets, it can be fairly slow and I have noticed that we now spend more time in CMake than in Ninja. There are various ways we could improve things like eliminating unnecessary checks. >> >> When running checks like check_c_compiler_flag, check_cxx_compiler_flag or check_library_exists, CMake caches the resulting variable and doesn't run the check again. The problem is that in LLVM, each subproject uses different variable names for results of these checks. For example, most subprojects check if pthread is available and store th...
2017 Nov 22
1
assign NA to rows by test on multiple columns of a data frame
...> > On Wed, Nov 22, 2017 at 5:34 AM, Massimo Bressan < > massimo.bressan at arpa.veneto.it> wrote: > >> >> >> Given this data frame (a simplified, essential reproducible example) >> >> >> >> >> A<-c(8,7,10,1,5) >> >> A_flag<-c(10,0,1,0,2) >> >> B<-c(5,6,2,1,0) >> >> B_flag<-c(12,9,0,5,0) >> >> >> >> >> mydf<-data.frame(A, A_flag, B, B_flag) >> >> >> >> >> # this is my initial df >> >> mydf >> >> >...
2017 Nov 23
1
assign NA to rows by test on multiple columns of a data frame
...uot; <massimo.bressan at arpa.veneto.it> Cc: "r-help" <r-help at r-project.org> Inviato: Mercoled?, 22 novembre 2017 17:32:33 Oggetto: Re: [R] assign NA to rows by test on multiple columns of a data frame Do you mean like this: mydf <- within(mydf, { is.na(A)<- !A_flag is.na(B)<- !B_flag } ) > mydf A A_flag B B_flag 1 8 10 5 12 2 NA 0 6 9 3 10 1 NA 0 4 NA 0 1 5 5 5 2 NA 0 Cheers, Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and stick...
2013 Oct 11
2
[LLVMdev] [Debug Info PATCH] for support of ref_addr and removal of DIE duplication
...equirement. But the caller doesn't specify it at all. I'd probably leave the comment out entirely - as the form isn't specified at the caller, it must be chosen by the callee. As a comparison, "addFlag" doesn't take a form, but it doesn't document that the form may be _flag or _flag_present - that's just an implementation detail. So in short, I would suggest you not modify the comment at all (leave it as it is today) - with that, please commit this patch. Did you find a test case for the worklist code yet? On Fri, Oct 11, 2013 at 4:35 PM, Manman Ren <manman...
2019 Nov 20
2
libunwind is not configured with -funwind-tables when building it for ARM Linux?
...ARM, and not just any ARM, but when we’re using ARM EHABI, e. g. on Linux (AFAIU Darwin doesn’t use EHABI). But I don’t know a way to detect this at configuration time, only at build time. I have an idea of the way that we could detect the -funwind-tables flag at build time: the check_cxx_compiler_flag function in CMake sets the LIBUNWIND_SUPPORTS_${flagname}_FLAG variable. Now, if the value of that variable is true, we pass a preprocessor definition like _LIBUNWIND_HAS_UNWIND_TABLES to the compiler when building libunwind. In the libunwind source code, we check if that macro is defined, and if n...
2015 Dec 20
2
[Aarch64 v2 05/18] Add Neon intrinsics for Silk noise shape quantization.
Jonathan Lennox wrote: > +opus_int32 silk_noise_shape_quantizer_short_prediction_neon(const opus_int32 *buf32, const opus_int32 *coef32) > +{ > + int32x4_t coef0 = vld1q_s32(coef32); > + int32x4_t coef1 = vld1q_s32(coef32 + 4); > + int32x4_t coef2 = vld1q_s32(coef32 + 8); > + int32x4_t coef3 = vld1q_s32(coef32 + 12); > + > + int32x4_t a0 = vld1q_s32(buf32 -
2014 Jun 27
0
Wine release 1.7.21
...k,unlock,trylock} implementation. msvcr110: Add __crtInitializeCriticalSectionEx implementation. msvcrt: Fix _flsbuf behavior on streams with MSVCRT__IONBF flag. msvcrt: Fix ungetc on files with empty buffer. msvcrt: Support NULL buffer in setvbuf. msvcrt: Use file->_flag to check if file buffering is enabled. msvcrt: Don't touch _bufsiz value while initializing FILE structure. Sebastian Lackner (23): kernel32: Update VirtualAddress of resource section in write_raw_resources. msvcr110: Fix typo in exported symbol _set_SSE2_enable. user32...
2013 Oct 11
0
[LLVMdev] [Debug Info PATCH] for support of ref_addr and removal of DIE duplication
Ping :) On Wed, Oct 9, 2013 at 5:22 PM, Manman Ren <manman.ren at gmail.com> wrote: > > > > On Wed, Oct 9, 2013 at 1:32 PM, Manman Ren <manman.ren at gmail.com> wrote: > >> >> David, >> >> Thanks for reviewing! >> >> On Wed, Oct 9, 2013 at 11:36 AM, David Blaikie <dblaikie at gmail.com>wrote: >> >>> Might be
2019 Nov 18
2
libunwind is not configured with -funwind-tables when building it for ARM Linux?
...failed. >> >> Source file was: >> int main() { return 0; } >> ``` >> >> No wonder! __aeabi_unwind_cpp_pr0 is defined in libunwind itself, which we haven’t built yet. >> >> If I instead set the -funwind-tables flag unconditionally using `add_compile_flags(-funwind-tables)` instead of `add_cxx_compile_flags_if_supported(-funwind-tables)`, everything is fine and the aforementioned bug is gone. >> >> I’ve found a PR which seemed to address this: https://reviews.llvm.org/D31858 (cc’ing @phosek, @compnerd and @beanz as participants of this...
2011 May 27
0
Wine release 1.3.21
...eing io data. msvcrt: Make fflush function thread safe. msvcrt: Make fclose thread safe. msvcrt: Make _filbuf thread safe. msvcrt: Make _flsbuf thread safe. msvcrt: Make setvbuf thread safe. msvcrt: Make ungetc and ungetwc thread safe. msvcrt: Make FILE->_flag reading functions thread safe. msvcrt: Make FILE position related functions thread safe. msvcrt: Make FILE reading functions thread safe. msvcrt: Make FILE writing functions thread safe. msvcrt: Close thread handle when _beginthread is used. msvcrt: Reorder fields of _...
2013 Oct 10
4
[LLVMdev] [Debug Info PATCH] for support of ref_addr and removal of DIE duplication
On Wed, Oct 9, 2013 at 1:32 PM, Manman Ren <manman.ren at gmail.com> wrote: > > David, > > Thanks for reviewing! > > On Wed, Oct 9, 2013 at 11:36 AM, David Blaikie <dblaikie at gmail.com> wrote: > >> Might be easier if these were on Phabricator, but here are some thoughts: >> >> 0001: >> This patch generally, while separated for
2013 Feb 28
11
new question
Hi, directory<- "/home/arunksa111/data.new" #first function filelist<-function(directory,number,list1){ setwd(directory) filelist1<-dir(directory) direct<-dir(directory,pattern = paste("MSMS_",number,"PepInfo.txt",sep=""), full.names = FALSE, recursive = TRUE) list1<-lapply(direct, function(x) read.table(x,header=TRUE, sep =