Displaying 15 results from an estimated 15 matches for "initialsize".
Did you mean:
initialize
2009 Jul 23
1
simple lme question
...for which I will use:
Response variable: Amix (continuous - biomass measurement)
Random effect: Block (factor - replicates labelled as 1,2,3)
Main effect: watering treatment (wt) (factor, 1-7)
Covariate: Aiso (continuous - biomass measurement)
Covariate: Amix.initialsize (initial biomass of Amix to account for any size variation before treatment was started)
Before I thought I'd have to include block as random effect, I used the following formula for a lm:
lm1<-lm(Amix~Aiso+wt+block+Amix.initialsize+Aiso:wt)
but I do not know how to structure this in an lm...
2019 Apr 23
2
SolrCore 'dovecot' is not available due to init failure: fieldType 'text_general' not found in the schema
Hello, it seems an mismatch of schema file provided by dovecot-2.3.5.2
[root at mail conf]# pwd
/var/solr/data/dovecot/conf
# Below solrconfig.xml is from Solr-8.0.0.
[root at mail conf]# grep text_general solrconfig.xml
<str name="queryAnalyzerFieldType">text_general</str>
field types. Text content will be indexed as "text_general" as
<str
2019 Apr 23
3
SolrCore 'dovecot' is not available due to init failure: fieldType 'text_general' not found in the schema
...utoSoftCommit.maxTime:-1}</maxTime>
> </autoSoftCommit>
> </updateHandler>
> <query>
> <maxBooleanClauses>${solr.max.booleanClauses:1024}</maxBooleanClauses>
> <filterCache class="solr.FastLRUCache" size="512" initialSize="512"
> autowarmCount="0"/>
> <queryResultCache class="solr.LRUCache" size="512" initialSize="512"
> autowarmCount="0"/>
> <documentCache class="solr.LRUCache" size="512" initialSize=&quo...
2019 Apr 23
0
SolrCore 'dovecot' is not available due to init failure: fieldType 'text_general' not found in the schema
...<maxTime>${solr.autoSoftCommit.maxTime:-1}</maxTime>
</autoSoftCommit>
</updateHandler>
<query>
<maxBooleanClauses>${solr.max.booleanClauses:1024}</maxBooleanClauses>
<filterCache class="solr.FastLRUCache" size="512" initialSize="512"
autowarmCount="0"/>
<queryResultCache class="solr.LRUCache" size="512" initialSize="512"
autowarmCount="0"/>
<documentCache class="solr.LRUCache" size="512" initialSize="512"
autowarm...
2016 May 30
0
[cfe-dev] How to debug if LTO generate wrong code?
...n instantiation of template class 'llvm::StringSet<unsigned int>' requested here
> llvm::StringSwitch<unsigned>(LTOCodeModel)
> ^
> /home/jshi19/llvm-3.8.0.src/include/llvm/ADT/StringMap.h:225:12: note: previous declaration is here
> explicit StringMap(unsigned InitialSize)
> ^
> 3 errors generated.
> tools/gold/CMakeFiles/LLVMgold.dir/build.make:65: recipe for target 'tools/gold/CMakeFiles/LLVMgold.dir/gold-plugin.cpp.o' failed
> make[3]: *** [tools/gold/CMakeFiles/LLVMgold.dir/gold-plugin.cpp.o] Error 1
> make[3]: Leaving directory...
2015 Jan 26
0
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
Inline
George
> On Jan 26, 2015, at 1:05 PM, Daniel Berlin <dberlin at dberlin.org> wrote:
>
> George, given that, can you just build constexpr handling (it's not as easy as you think) as a separate funciton and have it use it in the right places?
Will do. :)
> FWIW, my current list of CFLAA issues is:
>
> 1. Unknown values (results from ptrtoint, incoming
2015 Jan 26
2
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
George, given that, can you just build constexpr handling (it's not as easy
as you think) as a separate funciton and have it use it in the right places?
FWIW, my current list of CFLAA issues is:
1. Unknown values (results from ptrtoint, incoming pointers, etc) are not
treated as unknown. These should be done through graph edge (so that they
can be one way, otherwise, you will unify
2016 May 30
0
[cfe-dev] How to debug if LTO generate wrong code?
...n.cpp:800:3: note: in instantiation of template class 'llvm::StringSet<unsigned int>' requested here
llvm::StringSwitch<unsigned>(LTOCodeModel)
^
/home/jshi19/llvm-3.8.0.src/include/llvm/ADT/StringMap.h:225:12: note: previous declaration is here
explicit StringMap(unsigned InitialSize)
^
3 errors generated.
tools/gold/CMakeFiles/LLVMgold.dir/build.make:65: recipe for target 'tools/gold/CMakeFiles/LLVMgold.dir/gold-plugin.cpp.o' failed
make[3]: *** [tools/gold/CMakeFiles/LLVMgold.dir/gold-plugin.cpp.o] Error 1
make[3]: Leaving directory '/home/jshi19/llvm38...
2015 Jan 30
2
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
...cA.Ptr) && isa<Constant>(LocB.Ptr)) {
return MayAlias;
}
@@ -456,10 +459,11 @@ public:
template <typename InstT> void visitCallLikeInst(InstT &Inst) {
SmallVector<Function *, 4> Targets;
if (getPossibleTargets(&Inst, Targets)) {
+ auto InitialSize = Output.size();
if (tryInterproceduralAnalysis(Targets, &Inst, Inst.arg_operands()))
return;
// Cleanup from interprocedural analysis
- Output.clear();
+ Output.erase(Output.begin()+InitialSize, Output.end());
}
for (Value *V : Inst.arg_operands())...
2016 May 30
2
[cfe-dev] How to debug if LTO generate wrong code?
Hi Steven,
> On May 29, 2016, at 11:28 PM, Shi, Steven <steven.shi at intel.com> wrote:
>
> Hi Mehdi,
> Should I apply your attached patch on my llvm3.8 source firstly? Or should I use the latest llvm SVN trunk instead?
I wrote it on trunk, but I expect it to be fairly easy to port on 3.8. This is really just quickly plumbing an option on the TargetMachine creation.
--
2012 Aug 14
1
[GIT PULL] elflink fixes
Hi Peter,
The main part of this pull request includes commits that try to replace
as many __intcall() invocations as possible. Some remain, but not many
(and eventually they'll be gone too). There's also a patch to make
better use of ld's --as-needed option and various other bug
fixes/cleanups.
The following changes since commit ff7334a2ce536b7f4b1f6d6f93ff4e285a3bd45a:
Only
2016 May 30
7
[cfe-dev] How to debug if LTO generate wrong code?
> On May 29, 2016, at 5:44 PM, Shi, Steven <steven.shi at intel.com> wrote:
>
> (And I doubt the GNU linker supports LTO with LLVM).
> [Steven]: I’ve pushed GNU Binutils ld to support LLVM gold plugin, see detail in this bug https://sourceware.org/bugzilla/show_bug.cgi?id=20070 <https://sourceware.org/bugzilla/show_bug.cgi?id=20070>. The new GNU ld linker works well with
2012 Mar 23
19
[PATCH 00/19][elflink] Improve compatibility with 4.x
From: Matt Fleming <matt.fleming at intel.com>
The following patch series is available at,
git://git.zytor.com/users/mfleming/syslinux.git elflink
All patches are against the 'elflink' branch.
This series fixes a few serious bugs and some behavioural
incompatibilities with the 4.x series.
Matt Fleming (19):
ldlinux: Initialise 'p' before using it.
ldlinux: Parse
2014 Jan 28
3
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
Hi Stepan,
Sorry for the delay. It's great that you are working on MergeFunctions
as well and I agree, we should definitely try to combine our efforts to
improve MergeFunctions.
Just to give you some context, the pass (with the similar function
merging patch) is already being used in a production setting. From my
point of view, it would be better if we focus on improving its
capability
2014 Jan 30
3
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
...art --------------
A non-text attachment was scrubbed...
Name: test-scipt.sh
Type: application/x-sh
Size: 2084 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140130/eed1a30d/attachment.sh>
-------------- next part --------------
IRFile NumFunctionsTotal InitialSize MergedNoPatch TimeNoPatch SizeNoPatch MergedWithPatch TimeWithPatch SizeWithPatch
2002-04-17-PrintfChar.ll 2 2172 0 0.00 2163 0 0.00 2163
2002-05-02-ArgumentTest.ll 2 3164 0 0.01 3155 0 0.01 3155
2002-05-02-CastTest1.ll 1 2121 0 0.01 2112 0 0.01 2112
2002-05-02-CastTest2.ll 2 3803 0 0.01 3794 0 0.0...