Displaying 20 results from an estimated 220 matches for "alberta".
Did you mean:
albert
2005 Jun 15
2
1-800 DID in Alberta
Are there any 800 DID number providers for Alberta?
--
#Joseph
2018 Mar 19
1
Labelling a fortified GADM map plotted with ggplot and geom_map
..., grouped by "region", to appear on the corresponding regions of the map.
The data set "by_province" looks like this:
long lat order hole piece region group Number
-110.37074 60.00006 1 FALSE 1 Alberta Alberta.1 132
-110.36250 60.00006 2 FALSE 1 Alberta Alberta.1 132
-110.35103 60.00006 3 FALSE 1 Alberta Alberta.1 132
and the data set "tract" is the map data without...
2010 Mar 26
7
seed data
Hi
I am using seed_fu to seed initial data to tables
(http://github.com/mbleigh/seed-fu) . And in db/fixtures/state.rb
I have values like (I am filling only two data for simplicity)
State.seed_many(:name, :abbr,:fips,:country_id, [
{ :name => "Alberta", :abbr => ''AB'',:fips => ''01'', :country_id =>
2 },
{ :name => "Alaska", :abbr => ''AK'',:fips => ''02'', :country_id => 1
}
])
It works and when I do select * from states; I get result as...
2012 Jul 05
3
[LLVMdev] "symbol lookup error" while running a Simple Loop Pass
...vs
declaring it as a class. In the "writing a pass" tutorial the "Hello" pass
has been declared as a struct but most (if not all) the LLVM passes are
written as classes.
Thanks a lot;
--
Arnamoy Bhattacharyya
Athabasca Hall 143
Department of Computing Science - University of Alberta
Edmonton, Alberta, Canada, T6G 2E8
587-710-7073
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120705/ff65500b/attachment.html>
2012 Jul 05
1
[LLVMdev] "symbol lookup error" while running a Simple Loop Pass
...ll
members with "public:" visibility. From LLVM point of view,
functionality of your pass is not going to change at all by using
"class" or "struct" to define it.
BR
Carlos
> ---------- Forwarded message ----------
> From: Arnamoy Bhattacharyya <arnamoy at ualberta.ca>
> Date: Thu, Jul 5, 2012 at 12:34 AM
> Subject: "symbol lookup error" while running a Simple Loop Pass
> To: llvmdev at cs.uiuc.edu
>
>
> Hello;
>
> I wrote this simple loop pass to collect the number of instructions in each
> loop of the program. The co...
2012 Jul 05
0
[LLVMdev] "symbol lookup error" while running a Simple Loop Pass
...b directory) to solve the
problem.
Can anyone tell me what's the difference between writing a pass as a
"struct" (as in the tutorial) and as a "class" (as most developers do)?
Thanks again;
---------- Forwarded message ----------
From: Arnamoy Bhattacharyya <arnamoy at ualberta.ca>
Date: Thu, Jul 5, 2012 at 12:34 AM
Subject: "symbol lookup error" while running a Simple Loop Pass
To: llvmdev at cs.uiuc.edu
Hello;
I wrote this simple loop pass to collect the number of instructions in each
loop of the program. The code is as follows-
#define DEBUG_TYPE &quo...
2007 Nov 06
1
R 2.6.0 make check fails on SGI origin 350 and
...build/R-2.6.0/tests'
> gmake[1]: *** [test-all-basics] Error 1
> gmake[1]: Leaving directory `/usr/global/R-build/R-2.6.0/tests'
> gmake: *** [check] Error 2
Any ideas would be appreciated.
Cheers,
Kamil
Kamil Marcinkowski Westgrid System Administrator
kamil@ualberta.ca University of Alberta site
Tel.780 492-0354 Research Computing Support
Fax.780 492-1729 Academic ICT
Edmonton, Alberta, CANADA University of Alberta
"This communication is intended for the use of the recipient to which
it...
2010 Apr 04
2
One question about saving graph by using xyplot
...or (i in 1:5) {
filename=paste("fig",i,".pdf",sep="")
pdf(filename,width=6.5,height=4.5)
plot(lat ~ long, data = quakes)
graphics.off()
}
# I can open the pdf files.
Hope you can help me.
Thanks so much,
---
Jian Zhang
Department of Renewable Resources
University of Alberta
Edmonton, Alberta T6G 2H1, Canada
Phone (office): 780-492-8670
Email: jzhang1982@gmail.com; zjian@ualberta.ca
[[alternative HTML version deleted]]
2012 May 20
1
[LLVMdev] Error While Inserting New Instruction to LLVM IR
...cessary files>
llvm/include/llvm/Bitcode/LLVMBitCodes.h
llvm/lib/Bitcode/Reader/BitcodeReader.cpp
llvm/lib/VMCore/Instruction.cpp
llvm/lib/VMCore/Instructions.cpp
llvm/include/llvm-c/core.h
Thank you;
--
Arnamoy Bhattacharyya
Athabasca Hall 143
Department of Computing Science - University of Alberta
Edmonton, Alberta, Canada, T6G 2E8
780-680-7073
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120520/c12b74c3/attachment.html>
2007 Nov 06
1
Telus (Alberta) PRI Caller ID NAME, Display IE, Facility ID
We are trying to send caller ID NAME information over a Telus PRI in
Alberta.
The PRI tech says that he sees the NAME information, and for calls over
the same network, that NAME info should be reaching the receiving
station, but it is not.
The technician was stumped. I suspect there's something specific that I
need to do to make it work, since many PBXs can do this...
2013 Nov 05
2
[LLVMdev] Identifying the instructions that uses a pointer used as a function argument
...ecause first the pointer is loaded into
register and then the register is passed in the argument.
Sorry if the question does not make sense. Any pointer or explanation
will be appreciated.
Thanks a lot!!
--
Arnamoy Bhattacharyya
Athabasca Hall 143
Department of Computing Science - University of Alberta
Edmonton, Alberta, Canada, T6G 2E8
587-710-7073
2013 Nov 05
1
[LLVMdev] Identifying the instructions that uses a pointer used as a function argument
...;
> }
>
> If this doesn't help, you could try showing us the actual IR you're running
> the transformation on.
>
> Just FMI, is it okay to post code on this mailing list?
>
> H.
>
>
>
> On Tue, Nov 5, 2013 at 8:59 AM, Arnamoy Bhattacharyya <arnamoy at ualberta.ca>
> wrote:
>>
>> Hello all;
>>
>> So here is my goal:
>>
>> *** If there is a Call instruction to myFunction(int * val), I need to
>> identify all the instructions that uses val in the IR and replace the
>> uses with a newly created pointer....
2012 Jun 20
3
[LLVMdev] Is Loop Dependence Analysis Printing Correct Stats?
...stics Collected"
differ? Like first we get 11 "dependent"(must) accesses and later it says
11 "unknown" (may) accesses? Am I doing anything wrong or the code seems
buggy?
Thanks;
--
Arnamoy Bhattacharyya
Athabasca Hall 143
Department of Computing Science - University of Alberta
Edmonton, Alberta, Canada, T6G 2E8
587-710-7073
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120620/2dc31fde/attachment.html>
2010 Dec 25
0
[LLVMdev] Reviewer for our Path Profiling Implementation
...ion of path profiling in the short term. We ourselves will
be experimenting with the use of this implementation in some code
transformations to see if we observe any impact on performance.
--
Cheers,
Nelson
/
\ / / Jose Nelson Amaral - amaral at cs.ualberta.ca
) / ( Professor
/ / \ Dept. of Computing Science - University of Alberta
( / ) Edmonton, Alberta, Canada, T6G 2E8
\ O / Phone: (780)492-5411 Fax: (780)492-1071
\ / http://www.cs.ualberta.ca/~amaral
`----'
-------------- next...
2012 Sep 07
1
[LLVMdev] Get the filename on which a pass is running?
...pass as a loadable module. And if I run
my pass like this -
opt -S -loops -load /home/arnie/llvm-clang/llvm/Release+Asserts/lib/XYZ.so
-xyz <b.bc> b1.bc
I want to get b.bc in the pass.
Thank you;
--
Arnamoy Bhattacharyya
Athabasca Hall 143
Department of Computing Science - University of Alberta
Edmonton, Alberta, Canada, T6G 2E8
587-710-7073
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120906/5152ad42/attachment.html>
2009 Oct 14
1
Can R do specific factor analysis?
...ion to do the specific factor analysis. Because the functions
needed for
developing the factor analysis is provided by R, it should be easy to write
the factor analysis.
I appreciate if someone can give me some comment about the specific factor
analysis.
Thanks.
Gencheng Guo
ECE, University of Alberta,
Edmonton, Alberta, Canada
[[alternative HTML version deleted]]
2002 Mar 14
1
Printer Configurations
...hers so that al the attached
drivers and comments and such are intact.
Any ideas on this one?
BTW Our servers are running Solaris8, Linux (red hat 7.2), etc...
--
-Broderick Wood-
Analyst, Systems Support Group
Department of Computing Sciences
Athabasca Hall, Room 205
University of Alberta
Edmonton, Alberta, Canada
T6G 2E1
(780) 492-5018
"Failure is NOT an option;
It's bundled with your software."
2007 Feb 27
3
looping
...vector (x[i] would be the ith element in the vector x)
Is it possible to assign the value of the looping variable in a name within
the loop structure?
Cheers,
Neil Hepburn
===========================================
Neil Hepburn, Economics Instructor
Social Sciences Department,
The University of Alberta Augustana Campus
4901 - 46 Avenue
Camrose, Alberta
T4V 2R3
Phone (780) 697-1588
email nhepburn at augustana.ca
2012 Sep 05
2
[LLVMdev] llvm::ConstantArray::get(llvm::LLVMContext&, llvm::StringRef, bool) deprecated?
..."hello world") to the
Array Constant using currently available get method?
Previously llvm::ConstantArray::get(getGlobalContext(), "hello world",
true) should have worked.
Thank you;
--
Arnamoy Bhattacharyya
Athabasca Hall 143
Department of Computing Science - University of Alberta
Edmonton, Alberta, Canada, T6G 2E8
587-710-7073
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120905/1bfb4bec/attachment.html>
2013 Nov 05
0
[LLVMdev] Identifying the instructions that uses a pointer used as a function argument
...to& I : Replace)
I->replaceUsesOfWith(V, R);
}
If this doesn't help, you could try showing us the actual IR you're running
the transformation on.
Just FMI, is it okay to post code on this mailing list?
H.
On Tue, Nov 5, 2013 at 8:59 AM, Arnamoy Bhattacharyya
<arnamoy at ualberta.ca>wrote:
> Hello all;
>
> So here is my goal:
>
> *** If there is a Call instruction to myFunction(int * val), I need to
> identify all the instructions that uses val in the IR and replace the
> uses with a newly created pointer. I will also be changing the
> argument...