Displaying 11 results from an estimated 11 matches for "ub2".
Did you mean:
u32
2009 Jul 27
6
Superscripts and rounding
I am new to the world of R/programming so this may be a really easy question.
I thank you for your patience and help in advance
I would like the characters km^2 to be displayed on the plot subtitle as km
squared - two as a superscript.
I would also like to have the numbers from the data set for longitude and
latitude to be rounded to four decimal places.
Thank you.
plot (
2004 Nov 23
0
ROracle: fetch return zero rows or empty dataset (a workaround!)
...structure "sqlca" in ORACLE &
POSTGRESQL.
In oracle, sqlca is defined in $ORACLE_HOME/precomp/public/sqlca.h, as:
struct sqlca
{
/* ub1 */ char sqlcaid[8];
/* b4 */ int sqlabc;
/* b4 */ int sqlcode;
struct
{
/* ub2 */ unsigned short sqlerrml;
/* ub1 */ char sqlerrmc[70];
} sqlerrm;
/* ub1 */ char sqlerrp[8];
/* b4 */ int sqlerrd[6];
/* ub1 */ char sqlwarn[8];
/* ub1 */ char sqlext[8];
};
In rh-postgresql-devel-7.3.6-1 package,...
2019 Jul 16
2
lld-link crash when build openssl with LTO
...ious email, if I change the `memcpy` to
> `foobar` in memcpy.c, the lld-link report linking error that it cannot find
> the _memcpy symbol as below. In uefi firmware, we have to explicitly
> implement these compiler intrinsic functions by ourselves.
>
>
>
>
>
> jshi19 at ub2-uefi-b01:~/llvm/wrongcode/lld-link3$ make
>
> "/home/jshi19/llvm/llvm-project/releaseinstall/bin/clang" -Oz -flto
> -target i686-unknown-windows -c -o main.obj main.c
>
> "/home/jshi19/llvm/llvm-project/releaseinstall/bin/clang" -Oz -flto
> -target i686-unknow...
2019 Jul 16
2
lld-link crash when build openssl with LTO
Hi Steven,
One thing I noticed is that you are defining `memcpy`, which clang has an
intrinsic with the same name. Can you try renaming it to a random name,
like `foobar`, to see if the problem still exists?
On Tue, Jul 16, 2019 at 10:10 AM Shi, Steven <steven.shi at intel.com> wrote:
> I’ve submitted a BZ for this issue as below:
>
>
>
> Bug 42626 - lld-link crash when
2019 Jul 16
2
lld-link crash when build openssl with LTO
...ious email, if I change the `memcpy` to
> `foobar` in memcpy.c, the lld-link report linking error that it cannot find
> the _memcpy symbol as below. In uefi firmware, we have to explicitly
> implement these compiler intrinsic functions by ourselves.
>
>
>
>
>
> jshi19 at ub2-uefi-b01:~/llvm/wrongcode/lld-link3$ make
>
> "/home/jshi19/llvm/llvm-project/releaseinstall/bin/clang" -Oz -flto
> -target i686-unknown-windows -c -o main.obj main.c
>
> "/home/jshi19/llvm/llvm-project/releaseinstall/bin/clang" -Oz -flto
> -target i686-unknow...
2019 Jul 16
3
lld-link crash when build openssl with LTO
....c, the lld-link report linking error that it cannot find
>>> the _memcpy symbol as below. In uefi firmware, we have to explicitly
>>> implement these compiler intrinsic functions by ourselves.
>>>
>>>
>>>
>>>
>>>
>>> jshi19 at ub2-uefi-b01:~/llvm/wrongcode/lld-link3$ make
>>>
>>> "/home/jshi19/llvm/llvm-project/releaseinstall/bin/clang" -Oz -flto
>>> -target i686-unknown-windows -c -o main.obj main.c
>>>
>>> "/home/jshi19/llvm/llvm-project/releaseinstall/bin/clang&...
1997 Nov 19
7
Query
Hello All,
I am trying to compile Samba on POSIX under OpenVMS on a DEC 2000 AXP, however I am having difficulty defining the right FLAGSM and LIBSSM in the Makefile. So thus I'm having trouble getting the correct #includes, can anyone help?
Regards,
Gavin Butler
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/ms-tnef
2020 Feb 15
5
[flang-dev] About OpenMP dialect in MLIR
...m memory layouts. What custom layouts are
supported?
How would different non-scalar types in standard dialect be lowered to
LLVM IR and passed to OpenMP runtime calls? Can you please elaborate on
this?
The example provided in slide 20 of the fosdem presentation contains
“loop.for %j = %lb2 to %ub2 : !integer {“
But loop.for accepts “index” type. Not sure what type “!integer” represents
here.
1.
What are the different memory access operations which are supported
inside the OpenMP region and lowered to proper OpenMP runtime calls in LLVM
IR?
The possibilities are:
1....
2020 Feb 17
3
[flang-dev] About OpenMP dialect in MLIR
...t; How would different non-scalar types in standard dialect be lowered to
>> LLVM IR and passed to OpenMP runtime calls? Can you please elaborate on
>> this?
>>
>> The example provided in slide 20 of the fosdem presentation contains
>>
>> “loop.for %j = %lb2 to %ub2 : !integer {“
>>
>> But loop.for accepts “index” type. Not sure what type “!integer”
>> represents here.
>>
>>
>> 1.
>>
>> What are the different memory access operations which are supported
>> inside the OpenMP region and lowered to pr...
2020 Feb 18
2
[flang-dev] About OpenMP dialect in MLIR
...ard dialect be lowered to
>>>> LLVM IR and passed to OpenMP runtime calls? Can you please elaborate on
>>>> this?
>>>>
>>>> The example provided in slide 20 of the fosdem presentation contains
>>>>
>>>> “loop.for %j = %lb2 to %ub2 : !integer {“
>>>>
>>>> But loop.for accepts “index” type. Not sure what type “!integer”
>>>> represents here.
>>>>
>>>>
>>>> 1.
>>>>
>>>> What are the different memory access operations which are...
2020 Feb 13
6
About OpenMP dialect in MLIR
Hi,
I have few questions / concerns regarding the design of OpenMP dialect in
MLIR that is currently being implemented, mainly for the f18 compiler.
Below, I summarize the current state of various efforts in clang / f18 /
MLIR / LLVM regarding this. Feel free to add to the list in case I have
missed something.
1. [May 2019] An OpenMPIRBuilder in LLVM was proposed for flang and clang
frontends.