Displaying 20 results from an estimated 7343 matches for "region".
2020 Apr 15
0
[PATCH nbdkit 4/9] common/regions: Use new vector type to store the list of regions.
A fairly straightforward replacement, but note that we must rename all
variables called ‘regions’ as something else (eg. ‘rs’) because
-Wshadow warns about them (which is surprising to me since I thought
this warning only applied to local vs global variable, not local
variable vs global typedef).
Also I got rid of the get_regions accessor method, replacing it
everywhere with direct use of re...
2010 Jan 12
8
[LLVMdev] Make LoopBase inherit from "RegionBase"?
On 01/08/10 14:20, ether wrote:
> sorry that i forgot to change the subjuect
>
>
> hi all,
Hi ether,
now a kind of more complete answer.
> On 2010-1-7 0:11, John Mosby wrote:
>> In LLVM we could add support for generalized CFG regions and
>> RegionPasses. A region is a part of the CFG. The only information we
>> have is, that it has one entry and one exit, this it can be optimized
>> separately.
>> I think this is the best way to add region analysis. I must admit this
>> approach
>> helps me...
2010 Feb 28
2
[LLVMdev] region pass - new pass for llvm
hi all,
The patch in the attachment add a new pass - region pass to the llvm system.
A region pass is similar to a loop pass, all of them execute on a group of
BasicBlocks at one time, but it operate on a single entry single exit
region, not the nature loop.
The original purpose to add such a pass to llvm system is to allow us find
out the static control p...
2005 Sep 19
2
fallback in Icecast 2.3 RC3
On Mon, 2005-09-19 at 20:58, Milos Wimmer wrote:
> I send 2 streams from machine "A" to icecast server:
> "cro-region-256.ogg" (224 kb/s stream)
> "cro-region.ogg" (128 kb/s stream)
>
> and 1 backup stream from machine "B" to same icecast server:
> "z-cro-region.ogg" (128 kb/s stream)
>
> I'm using following definition in my icecast.xml...
2010 Jan 15
0
[LLVMdev] Make LoopBase inherit from "RegionBase"?
On 01/15/10 03:03, ether wrote:
> hi,
Hi,
> about region class, i think provide some method to extract the top level
> loop from a given region is useful in polly(our polyhedral optimization
> framework), because the we are only doing optimization on the region
> with loop.
Hi ether,
I think this should be implemented as a RegionFilter, that c...
2010 Mar 04
0
[LLVMdev] region pass - new pass for llvm
How is the patch compressed? I don't know how to open the file with .7z suffix.
Evan
On Feb 27, 2010, at 10:12 PM, ether zhhb wrote:
> hi all,
>
> The patch in the attachment add a new pass - region pass to the llvm system. A region pass is similar to a loop pass, all of them execute on a group of BasicBlocks at one time, but it operate on a single entry single exit region, not the nature loop.
>
> The original purpose to add such a pass to llvm system is to allow us find out the stati...
2010 Jan 12
0
[LLVMdev] Make LoopBase inherit from "RegionBase"?
Why not use the "standard" algorithm for detecting SESE-regions and building a program structure tree?
It should handle everything you want. It also becomes much simpler to specify a connected SESE-region
by entry/exit edges, while a disconnected region is specified by entry/exit blocks. Only defining regions on
blocks is not enough to be able to quickly deter...
2020 Apr 15
1
Re: [PATCH nbdkit 4/9] common/regions: Use new vector type to store the list of regions.
On 4/15/20 11:16 AM, Richard W.M. Jones wrote:
> A fairly straightforward replacement, but note that we must rename all
> variables called ‘regions’ as something else (eg. ‘rs’) because
> -Wshadow warns about them (which is surprising to me since I thought
> this warning only applied to local vs global variable, not local
> variable vs global typedef).
>
> Also I got rid of the get_regions accessor method, replacing it
> ev...
2020 Apr 15
18
[PATCH nbdkit 0/9] Generic vector, and pass $nbdkit_stdio_safe to shell scripts.
This was a rather longer trip around the houses than I anticipated!
The basic purpose of the patch series is to set $nbdkit_stdio_safe to
"0" or "1" in sh and eval plugin scripts.
To do that, I ended up adding a nicer way to manipulate environ lists,
and to do that, I ended up adding a whole generic vector
implementation which is applicable in a lot of different places.
2020 Jun 27
0
[centos/centos.org] branch master updated: Updated page for AWS AMI images ID and link
...14 +++-
download/{cloud.md => aws-images.md} | 15 +++-
3 files changed, 104 insertions(+), 54 deletions(-)
diff --git a/_data/aws-images.csv b/_data/aws-images.csv
index cadcdc0..4d6c7a9 100644
--- a/_data/aws-images.csv
+++ b/_data/aws-images.csv
@@ -1,50 +1,81 @@
"Version","Region","Architecture","AMI ID","Deploy link"
-"CentOS 8","us-east-1","x86_64","ami-01ca03df4a6012157","https://console.aws.amazon.com/ec2/v2/home?region=us-east-1#LaunchInstanceWizard:ami=ami-01ca03df4a6012157"
-"Ce...
2010 Jan 13
1
[LLVMdev] Make LoopBase inherit from "RegionBase"?
On 01/13/10 00:56, Jan Sjodin wrote:
> Why not use the "standard" algorithm for detecting SESE-regions and building a program structure tree?
> It should handle everything you want. It also becomes much simpler to specify a connected SESE-region
> by entry/exit edges, while a disconnected region is specified by entry/exit blocks. Only defining regions on
> blocks is not enough to be able t...
2010 Jan 20
1
[LLVMdev] Make LoopBase inherit from "RegionBase"?
On 01/20/10 18:05, Jan Sjodin wrote:
>>>> bbs, to generate these edges. As we do not have to modify the CFG other
>>>> passes like dominance information are still valid, and we do not have to
>>>> create a lot of auxiliary bbs, to be able to detect all regions. This
>>>> saves memory and runtime. In general it is probably not too easy to
>>>> decide where to insert these bbs either:
>>>
>>> The general rule is to split all blocks with multiple in-edges and multiple out-edges
>>> into blocks with either...
2010 Jan 13
1
[LLVMdev] Make LoopBase inherit from "RegionBase"?
...ral this approach saves a preliminary pass that has to insert new
>
>> bbs, to generate these edges. As we do not have to modify the CFG other
>> passes like dominance information are still valid, and we do not have to
>> create a lot of auxiliary bbs, to be able to detect all regions. This
>> saves memory and runtime. In general it is probably not too easy to
>> decide where to insert these bbs either:
>
> The general rule is to split all blocks with multiple in-edges and multiple out-edges
> into blocks with either multiple in-edges or multiple out-edges...
2006 Jun 04
1
Nested and repeated effects together?
Dear R people,
I am having a problem with modeling the following SAS code in R:
Class ID Gr Hemi Region Gender
Model Y = Gr Region Hemi Gender Gr*Hemi Gr*Region Hemi*Region
Gender*Region Gender*Hemi Gr*Hemi*Region Gender*Hemi*Region
Gr*Gender*Hemi*Region
Random Intercept Region Hemi /Subject = ID (Gr Gender)
I.e., ID is a random effect nested in Gr and Gender, leading to
ID-specific Intercept, Re...
2019 Jan 20
1
[PATCH nbdkit] partitioning: Support MBR logical partitions.
An evolution of the patch I posted yesterday to qemu-devel
(https://www.mail-archive.com/qemu-devel@nongnu.org/msg588920.html)
which (a) works and (b) has a test.
Rich.
2015 Jul 16
2
[LLVMdev] Regions according to LLVM
Hi all,
I'm working with regions, and I was surprised by the region set of this function:
> define void @foo() {
> br i1 false, label %loop, label %end
>
> loop:
> br i1 false, label %loop, label %end
>
> end:
> ret void
> }
.dot file as generated by opt —view-regions attached. Essentially, the...
2010 Nov 24
2
[LLVMdev] RFC: Exception Handling Proposal II
On Nov 24, 2010, at 5:36 AM, Bill Wendling wrote:
> On Nov 24, 2010, at 4:58 AM, John McCall wrote:
>>
>>> The object 'f' is in a different cleanup area than 'b' which, in turn
>>> is in a different area than 'z'. These three regions should point to
>>> three different landing pads (or different offsets in the same landing
>>> pad), which (I believe) are encoded in IR by being declared after
>>> different dispatch instructions, all of which within the same region.
>>
>> Nope. Three regi...
2010 Mar 04
3
[LLVMdev] region pass - new pass for llvm
...-Jim
On Mar 4, 2010, at 11:15 AM, Evan Cheng wrote:
> How is the patch compressed? I don't know how to open the file with .7z suffix.
>
> Evan
> On Feb 27, 2010, at 10:12 PM, ether zhhb wrote:
>
>> hi all,
>>
>> The patch in the attachment add a new pass - region pass to the llvm system. A region pass is similar to a loop pass, all of them execute on a group of BasicBlocks at one time, but it operate on a single entry single exit region, not the nature loop.
>>
>> The original purpose to add such a pass to llvm system is to allow us find out t...
2020 Nov 12
0
[centos/centos.org] branch master updated: Reflected new 7.9.2009 release and updated AMI IDs for AWS
...a/aws-images.csv b/_data/aws-images.csv
index 4d6c7a9..c583962 100644
--- a/_data/aws-images.csv
+++ b/_data/aws-images.csv
@@ -39,43 +39,43 @@
" CentOS Linux 8 ","eu-north-1","aarch64","ami-02e921ca8f16f9ee4","https://console.aws.amazon.com/ec2/v2/home?region=eu-north-1#LaunchInstanceWizard:ami=ami-02e921ca8f16f9ee4"
" CentOS Linux 8 ","me-south-1","aarch64","ami-0699d4d858abc9036","https://console.aws.amazon.com/ec2/v2/home?region=me-south-1#LaunchInstanceWizard:ami=ami-0699d4d858abc9036"
"...
2010 Mar 08
1
[LLVMdev] region pass - new pass for llvm
...; This is useful if you want to restrict an analysis&transformation
>> e.g. to side effect free code, code without loops, code without
>> irregular control flow, ...
>
> I'm confused...
>
> I thought that loop optimization was one of the benefits of separating
> a region from the rest of the code... Also, you can only guarantee
> side effect free code if there is no function calls or the whole
> program is running single threaded. SSA would guarantee all the other
> cases.
Hi Renato,
these are just examples for what regions could be used for. The idea is...