text
stringlengths
0
10.6k
Pousa served as ispán ("comes") of Vas County in 1225. During the reign of Andrew II, he was a faithful supporter of crown prince Béla, who held the title of Duke of Transylvania after 1226, following the agreement between the king and his son after a series of conflicts for the throne. Sometime Duke Béla acted independently of his father, as it is demonstrated by his grant of tax exemption to Transylvanian knights in 1231 and by his donation of lands situated in Wallachia in 1233. Pousa served as master of the treasury ("camerarius") for Béla in 1225.
He was appointed voivode of Transylvania in 1227. According to László Markó, he held the office between 1226 and 1229, however existing charters only prove the term of voivodeship in 1227. He served as master of the horse for duke Béla between 1229 and 1233.
When Béla ascended the throne in 1235, Pousa was appointed voivode of Transylvania for the second time. In 1241, Transylvania suffered during the Mongol invasion of Europe. Güyük Khan invaded the province from the Oituz Pass in March. Voivode Pousa fought them with his royal army near Burzenland (), where he fell in battle on 31 March 1241. The Mongols continued their campaign toward the interior of the Kingdom of Hungary.
= = = AVX-512 = = =
AVX-512 are 512-bit extensions to the 256-bit Advanced Vector Extensions SIMD instructions for x86 instruction set architecture (ISA) proposed by Intel in July 2013, and implemented in Intel's Xeon Phi x200 (Knights Landing) and Skylake-X CPUs; this includes the Core-X series (excluding the Core i5-7640X and Core i7-7740X), as well as the new Xeon Scalable Processor Family and Xeon D-2100 Embedded Series.
AVX-512 is not the first 512-bit SIMD instruction set that Intel has introduced in processors: the earlier 512-bit SIMD instructions used in the first generation Xeon Phi coprocessors, derived from Intel's Larrabee project, are similar but not binary compatible and only partially source compatible.
AVX-512 consists of multiple extensions that may be implemented independently. This policy is a departure from the historical requirement of implementing the entire instruction block. Only the core extension AVX-512F (AVX-512 Foundation) is required by all AVX-512 implementations.
The AVX-512 instruction set consists of several separate sets each having their own unique CPUID feature bit; however, they are typically grouped by the processor generation that implements them.
The VEX prefix used by AVX and AVX2, while flexible, did not leave enough room for the features Intel wanted to add to AVX-512. This has led them to define a new prefix called EVEX.
Compared to VEX, EVEX adds the following benefits:
The extended registers, SIMD width bit, and opmask registers of AVX-512 are mandatory and all require support from the OS.
The AVX-512 instructions are designed to mix with 128/256-bit AVX/AVX2 instructions without a performance penalty. However, AVX-512VL extensions allows the use of AVX-512 instructions on 128/256-bit registers XMM/YMM, so most SSE and AVX/AVX2 instructions have new AVX-512 versions encoded with the EVEX prefix which allow access to new features such as opmask and additional registers. Unlike AVX-256, the new instructions do not have new mnemonics but share namespace with AVX, making the distinction between VEX and EVEX encoded versions of an instruction ambiguous in the source code. Since AVX-512F only works on 32- and 64-bit values, SSE and AVX/AVX2 instructions that operate on bytes or words are available only with the AVX-512BW extension (Byte & Word support).
The width of the SIMD register file is increased from 256 bits to 512 bits, and expanded from 16 to a total of 32 registers ZMM0-ZMM31. These registers can be addressed as 256 bit YMM registers from AVX extensions and 128-bit XMM registers from Streaming SIMD Extensions, and legacy AVX and SSE instructions can be extended to operate on the 16 additional registers XMM16-XMM31 and YMM16-YMM31 when using EVEX encoded form.
Most AVX-512 instructions may indicate one of 8 opmask registers (k0–k7). For instructions which use a mask register as an opmask, register `k0` is special: a hardcoded constant used to indicate unmasked operations. For other operations, such as those that write to an opmask register or perform arithmetic or logical operations, `k0` is a functioning, valid register. In most instructions, the opmask is used to control which values are written to the destination. A flag controls the opmask behavior, which can either be "zero", which zeros everything not selected by the mask, or "merge", which leaves everything not selected untouched. The merge behavior is identical to the blend instructions.
The opmask registers are normally 16 bits wide, but can be up to 64 bits with the AVX-512BW extension. How many of the bits are actually used, though, depends on the vector type of the instructions masked. For the 32-bit single float or double words, 16 bits are used to mask the 16 elements in a 512-bit register. For double float and quad words, at most 8 mask bits are used.
The opmask register is the reason why several bitwise instructions which naturally have no element widths had them added in AVX-512. For instance, bitwise AND, OR or 128-bit shuffle now exist in both double-word and quad-word variants with the only difference being in the final masking.
The opmask registers have a new mini extension of instructions operating directly on them. Unlike the rest of the AVX-512 instructions, these instructions are all VEX encoded. The initial opmask instructions are all 16-bit (Word) versions. With AVX-512DQ 8-bit (Byte) versions were added to better match the needs of masking 8 64-bit values, and with AVX-512BW 32-bit (Double) and 64-bit (Quad) versions were added so they can mask up to 64 8-bit values. The instructions KORTEST and KTEST can be used to set the x86 flags based on mask registers, so that they may be used together with non-SIMD x86 branch and conditional instructions.
Many AVX-512 instructions are simply EVEX versions of old SSE or AVX instructions. There are, however, several new instructions, and old instructions that have been replaced with new AVX-512 versions. The new or majorly reworked instructions are listed below. These "foundation" instructions also include the extensions from AVX-512VL and AVX-512BW since those extensions merely add new versions of these instructions instead of new instructions.
There are no EVEX-prefixed versions of the blend instructions from SSE4; instead, AVX-512 has a new set of blending instructions using mask registers as selectors. Together with the general compare into mask instructions below, these may be used to implement generic ternary operations or cmov, similar to XOP's VPCMOV.
Since blending is an integral part of the EVEX encoding, these instruction may also be considered basic move instructions. Using the zeroing blend mode, they can also be used as masking instructions.
AVX-512F has four new compare instructions. Like their XOP counterparts they use the immediate field to select between 8 different comparisons. Unlike their XOP inspiration, however, they save the result to a mask register and initially only support doubleword and quadword comparisons. The AVX-512BW extension provides the byte and word versions. Note that two mask registers may be specified for the instructions, one to write to and one to declare regular masking.
The final way to set masks is using Logical Set Mask. These instructions perform either AND or NAND, and then set the destination opmask based on the result values being zero or non-zero. Note that like the comparison instructions, these take two opmask registers, one as destination and one a regular opmask.
The compress and expand instructions match the APL operations of the same name. They use the opmask in a slightly different way from other AVX-512 instructions. Compress only saves the values marked in the mask, but saves them compacted by skipping and not reserving space for unmarked values. Expand operates in the opposite way, by loading as many values as indicated in the mask and then spreading them to the selected positions.
A new set of permute instructions have been added for full two input permutations. They all take three arguments, two source registers and one index; the result is output by either overwriting the first source register or the index register. AVX-512BW extends the instructions to also include 16-bit (word) versions, and the AVX-512_VBMI extension defines the byte versions of the instructions.
Two new instructions added can logically implement all possible bitwise operations between three inputs. They take three registers as input and an 8-bit immediate field. Each bit in the output is generated using a lookup of the three corresponding bits in the inputs to select one of the 8 positions in the 8-bit immediate. Since only 8 combinations are possible using three bits, this allow all possible 3 input bitwise operations to be performed.
These are the only bitwise vector instructions in AVX-512F; EVEX versions of the two source SSE and AVX bitwise vector instructions AND, ANDN, OR and XOR were added in AVX-512DQ.
The difference in the doubleword and quadword versions is only the application of the opmask.
Truth table:
A number of conversion or move instructions were added; these complete the set of conversion instructions available from SSE2.
Among the unique new features in AVX-512F are instructions to decompose floating-point values and handle special floating-point values. Since these methods are completely new, they also exist in scalar versions.
This is the second set of new floating-point methods, which includes new scaling and approximate calculation of reciprocal, and reciprocal of square root. The approximate reciprocal instructions guarantee to have at most a relative error of 2.
The instructions in AVX-512 conflict detection (AVX-512CD) are designed to help efficiently calculate conflict-free subsets of elements in loops that normally could not be safely vectorized.
AVX-512 exponential and reciprocal instructions contain more accurate approximate reciprocal instructions than those in the AVX-512 foundation; relative error is at most 2. They also contain two new exponential functions that have a relative error of at most 2.
AVX-512 prefetch instructions contain new prefetch operations for the new scatter and gather functionality introduced in AVX2 and AVX-512. codice_1 prefetch means prefetching into level 1 cache and codice_2 means prefetching into level 2 cache.
AVX-512DQ adds new doubleword and quadword instructions. AVX-512BW adds byte and words versions of the same instructions, and adds byte and word version of doubleword/quadword instructions in AVX-512F. A few instructions which get only word forms with AVX-512BW acquire byte forms with the AVX-512_VBMI extension (codice_3, codice_4, codice_5, codice_6).
Two new instructions were added to the mask instructions set: codice_7 and codice_8 (B and W forms with AVX-512DQ, D and Q with AVX-512BW). The rest of mask instructions, which had only word forms, got byte forms with AVX-512DQ and doubleword/quadword forms with AVX-512BW. codice_9 was extended to codice_10 and codice_11 by AVX-512BW.
Among the instructions added by AVX-512DQ are several SSE, AVX instruction that didn't get AVX-512 versions with AVX-512F, among those are all the two input bitwise instructions and extract/insert integer instructions.
Instructions that are completely new are covered below.
Three new floating point operations are introduced. Since they are not only new to AVX-512 they have both packed/SIMD and scalar versions.
The codice_12 instructions tests if the floating point value is one of eight special floating-point values, which of the eight values will trigger a bit in the output mask register is controlled by the immediate field. The codice_13 instructions perform minimum or maximum operations depending on the value of the immediate field, which can also control if the operation is done absolute or not and separately how the sign is handled. The codice_14 instructions operate on a single source, and subtract from that the integer part of the source value plus a number of bits specified in the immediate field of its fraction.
Extend VPCOMPRESS and VPEXPAND with byte and word variants. Shift instructions are new.
Vector Neural Network Instructions.
EVEX-encoded Galois field new instructions:
VPCLMULQDQ with AVX-512F adds EVEX-encoded 512-bit version of PCLMULQDQ instruction. With AVX-512VL, it adds EVEX-encoded 256- and 128-bit versions. VPCLMULQDQ alone (that is, on non-AVX512 CPUs) adds only VEX-encoded 256-bit version. (Availability of the VEX-encoded 128-bit version is indicated by different CPUID bits: PCLMULQDQ and AVX.) The wider than 128-bit variations of the instruction perform the same operation on each 128-bit portion of input registers, but they do not extend it to select quadwords from different 128-bit fields (the meaning of imm8 operand is the same: either low or high quadword of the 128-bit field is selected).
EVEX-encoded AES instructions. The wider than 128-bit variations of the instruction perform the same operation on each 128-bit portion of input registers.
AI acceleration instructions operating on the Bfloat16 format.
Intel "Vectorization" Advisor (starting from version 2016 Update 3) supports native AVX-512 performance and vector code quality analysis for 2nd generation Intel Xeon Phi (codenamed Knights Landing) processor. Along with traditional hotspots profile, Advisor Recommendations and "seamless" integration of Intel Compiler vectorization diagnostics, Advisor Survey analysis also provides AVX-512 ISA metrics and new AVX-512-specific "traits", e.g. Scatter, Compress/Expand, mask utilization.
= = = Estefanía Banini = = =
Estefanía Romina Banini Ruiz (born 21 June 1990) is an Argentine footballer who plays as a forward on loan for Spanish club Levante UD. She also plays for the Washington Spirit in the NWSL and the Argentina women's national team.
Banini has previously spent four seasons with Colo-Colo of the Chilean women's football championship, two seasons with the Spirit, and a season with Valencia. Banini is a member of the Argentine women's national team. She is often referred to as the female equivalent of male football star Lionel Messi and the Marta of Argentina.
Banini played for Colo-Colo in Chile from 2011 to 2014. In December 2014, she captained the team to win its ninth consecutive national title after scoring twice and defeating Santiago Morning 3–1.
In January 2015, it was announced that Banini had signed with the Washington Spirit for the third season of the National Women's Soccer League (NWSL). Of her signing, Spirit head coach Mark Parsons said, "Estefania is an exceptional talent and I do not think there is a player like her in the league. She is going to give the team a very different dynamic and provide us with real quality in the final third." She played and started in the first four games of the 2015 season before sustaining an injury which sidelined her for the rest of the year. Banini came back strong midway through the 2016 season, scoring five goals in a seven-game period before sustaining another injury. The Argentine was awarded the Spirit 2016 Golden Boot award, NWSL Goal of the Week for Week 13, NWSL Player of the Week for Week 13, and NWSL Player of the Month for July.
In October 2016 Banini transferred to Spain's Primera División club Valencia CF Femenino.
Banini re-signed with the Washington Spirit on 19 June 2017. she appeared in 9 games in 2017, and scored 1 goal. In 2018 Banini only appeared in 12 games for the Spirit as she missed time due to the 2018 Copa América and missed the last seven games of the season due to a knee injury.
On 4 December 2018 Banini re-signed with the Spirit for the 2019 NWSL season.
On 17 October 2018 Banini joined Levante in the Spanish Primera División.
Banini has played for the Argentina women's national football team since 2010. In September 2014, she scored a penalty kick in a match against Brazil helping Argentina win 2–0 during the Copa América Femenina tournament. Banini scored three goals at the 2018 Copa América Femenina.
"Scores and results list Argentina's goal tally first"
Individual
Team
= = = Freddy Ngoza = = =
Thato Frederick Ntandyenkosi Ngoza (born 20 October 1991 in Piet Retief) is a South African rugby union player who last played for the in the Currie Cup and the Rugby Challenge. His regular position is as a loose-forward or a lock.
He represented the at the 2008 Under–18 Academy Week and the 2009 Under–18 Craven Week tournaments. He then joined the Griffons and played for the team in the 2010 Under-19 Provincial Championship tournament.
He was included in the side for the 2011 Vodacom Cup competition and made his debut when he started in a 60–0 defeat to . He also featured the following match against the .
He played for the side in the 2011 Under-21 Provincial Championship and 2012 Under-21 Provincial Championship competitions. In 2013, he was included in the Vodacom Cup side and made two substitute appearances, also scoring a last-minute try in their match against the
He was included in their squad for the 2013 Currie Cup Premier Division, but actually made his Currie Cup debut during a loan spell at former side , coming on as a substitute against the .
Ngoza signed a deal with Pretoria-based side the for the 2016 and 2017 seasons.
Ngoza also played Varsity Cup rugby for , representing them in the 2011, 2012 and 2013 seasons.
= = = Ab Darreh-ye Mushemi = = =
Ab Darreh-e Mushemi (, also Romanized as Āb Darreh-e Mūshemī; also known as Āb Darreh) is a village in Tayebi-ye Sarhadi-ye Gharbi Rural District, Charusa District, Kohgiluyeh County, Kohgiluyeh and Boyer-Ahmad Province, Iran. At the 2006 census, its existence was noted, but its population was not reported.
= = = LEROS = = =
LEROS is a family of chemical rocket engines manufactured by Nammo at Westcott, Buckinghamshire, United Kingdom. LEROS engines have been used as primary apogee engines for telecommunications satellites such as the Lockheed Martin A2100 as well as deep space missions such as "Juno".
The family of engines derives from the LEROS 1 which was developed and qualified in the 1990s by Royal Ordnance. The in-space propulsion business was acquired by British Aerospace, then had a sequence of owners including American Pacific Corporation, Moog (from 2012) and Nammo (2017). The LEROS engines are made of niobium alloy, which is traditionally used for liquid rocket engines such as the attitude control thrusters of the Apollo Lunar Module. As of 2011, more than 70 LEROS 1 series engines had been flown successfully.
LEROS engines have been used on a number of NASA and other space agency missions:
There have been helium check valve problems on "Juno" leading to postponed maneuvers, and a failure after the first burn on Intelsat 33e requiring backup low-thrust jets to be used to bring the satellite to its intended orbit.
= = = Ab Darreh, Kohgiluyeh and Boyer-Ahmad = = =
Ab Darreh (, also Romanized as Āb Darreh) is a village in Tayebi-ye Garmsiri-ye Shomali Rural District, in the Central District of Landeh County, Kohgiluyeh and Boyer-Ahmad Province, Iran. At the 2006 census, its population was 27, in 4 families.
= = = Churchill County Courthouse = = =
The Churchill County Courthouse, at 10 Williams St. in Fallon, Nevada, was built in 1903. It was designed by Reno, Nevada, architect Ben Leon in Classical Revival style, including a monumental portico with two pairs of columns having Ionic capitals. It served as the county courthouse until 1973 and then was used for offices.
It is significant as "one of the most substantial buildings in Churchill County" and as one of only two surviving frame courthouses in Nevada.
It was listed on the National Register of Historic Places in 1992.
= = = Edrag = = =
Edrag (; also known as Edraj) is a village in Tayebi-ye Sarhadi-ye Gharbi Rural District, Charusa District, Kohgiluyeh County, Kohgiluyeh and Boyer-Ahmad Province, Iran. At the 2006 census, its population was 294, in 64 families.