Intel CPU Instructions

Post Reply
User avatar
Finrock
Marshmallow
Posts: 461

Intel CPU Instructions

Post by Finrock »

Given the information provided, here's how we might interpret and connect Michael Sherwin's statement about an Intel engineer and the development of CPU instructions:

1. **Intel Engineer's Involvement**: If an Intel engineer was involved in chess programming forums or discussions, it's plausible that they could have been influenced by or discussed advanced bit manipulation techniques used in chess engines, including those potentially developed or discussed by Michael Sherwin.

2. **Influence of Bitboard Techniques**: Bitboards are foundational in modern chess programming due to their efficiency in representing and manipulating chess positions. Techniques like:

- **Magic Bitboards**: For efficiently calculating sliding piece attacks (bishops, rooks, queens).
- **Bit Twiddling**: Operations like bit scanning, setting, or clearing for piece movement.

These techniques could inspire or parallel the development of CPU instructions aimed at optimizing bit-level operations.

3. **Development of CPU Instructions**:

- **BMI (Bit Manipulation Instructions)**: If Sherwin's philosophy involved extensive bit manipulation, it aligns with what became BMI1 and BMI2. These include operations like:
- `TZCNT` (trailing zero count) which could parallel the need to find the least significant bit in a bitboard.
- `LZCNT` (leading zero count) for finding the most significant bit.
- `PEXT` and `PDEP` which are directly about extracting or depositing bits, useful in many bitboard operations.

- **AVX and AVX-512**: While these are more about vector operations, they could also have been inspired by the need for parallel processing in chess engines, although this is less directly linked to bitboard philosophies.

4. **Philosophical Connection**: Sherwin's philosophy might not have directly led to the creation of new CPU instructions, but it could have contributed to the conceptual ecosystem where:

- The need for efficient bit manipulation in various fields (not just chess) was evident.
- Engineers like those at Intel recognized the potential for hardware-level support of such operations.

5. **Intel's Motivation**: Intel might have been motivated independently or through collective industry demand, but individual engineers' involvement in niche areas like chess programming could indeed inspire or validate the need for such instructions.

6. **Community Influence**: The chess programming community, including figures like Sherwin, often shares ideas, techniques, and optimizations. An Intel engineer's participation in such forums could have facilitated a loop where advanced bit manipulation needs in software influenced hardware design, even if indirectly.

While there might not be direct documentation linking Michael Sherwin's ideas to Intel's instruction set development, the intersection of software needs (like chess programming) with hardware advancements (CPU instructions) is a common theme in computing history. This scenario represents a plausible example of how specialized community practices might influence broader technological developments in computing, even if those developments were likely influenced by a multitude of factors, not just one individual or philosophy.

The Wicker Man
Marshmallow
Posts: 227

Post by The Wicker Man »

Finrock wrote: Tue Oct 15, 2024 5:04 am Given the information provided, here's how we might interpret and connect Michael Sherwin's statement about an Intel engineer and the development of CPU instructions:

1. **Intel Engineer's Involvement**: If an Intel engineer was involved in chess programming forums or discussions, it's plausible that they could have been influenced by or discussed advanced bit manipulation techniques used in chess engines, including those potentially developed or discussed by Michael Sherwin.

2. **Influence of Bitboard Techniques**: Bitboards are foundational in modern chess programming due to their efficiency in representing and manipulating chess positions. Techniques like:

- **Magic Bitboards**: For efficiently calculating sliding piece attacks (bishops, rooks, queens).
- **Bit Twiddling**: Operations like bit scanning, setting, or clearing for piece movement.

These techniques could inspire or parallel the development of CPU instructions aimed at optimizing bit-level operations.

3. **Development of CPU Instructions**:

- **BMI (Bit Manipulation Instructions)**: If Sherwin's philosophy involved extensive bit manipulation, it aligns with what became BMI1 and BMI2. These include operations like:
- `TZCNT` (trailing zero count) which could parallel the need to find the least significant bit in a bitboard.
- `LZCNT` (leading zero count) for finding the most significant bit.
- `PEXT` and `PDEP` which are directly about extracting or depositing bits, useful in many bitboard operations.

- **AVX and AVX-512**: While these are more about vector operations, they could also have been inspired by the need for parallel processing in chess engines, although this is less directly linked to bitboard philosophies.

4. **Philosophical Connection**: Sherwin's philosophy might not have directly led to the creation of new CPU instructions, but it could have contributed to the conceptual ecosystem where:

- The need for efficient bit manipulation in various fields (not just chess) was evident.
- Engineers like those at Intel recognized the potential for hardware-level support of such operations.

5. **Intel's Motivation**: Intel might have been motivated independently or through collective industry demand, but individual engineers' involvement in niche areas like chess programming could indeed inspire or validate the need for such instructions.

6. **Community Influence**: The chess programming community, including figures like Sherwin, often shares ideas, techniques, and optimizations. An Intel engineer's participation in such forums could have facilitated a loop where advanced bit manipulation needs in software influenced hardware design, even if indirectly.

While there might not be direct documentation linking Michael Sherwin's ideas to Intel's instruction set development, the intersection of software needs (like chess programming) with hardware advancements (CPU instructions) is a common theme in computing history. This scenario represents a plausible example of how specialized community practices might influence broader technological developments in computing, even if those developments were likely influenced by a multitude of factors, not just one individual or philosophy.
from https://www.chessprogramming.org/BMI2#PEXTBitboards
Early PEXT/PDEP Proposal
In late 2006, Michael Sherwin already proposed a PEXTPDEP instruction, Parallel Bits Extract controlled by a source mask followed by Parallel Bits Deposit controlled by a destination mask [20] [21]. However, it is not known whether his proposal was recognized by Intel engineers and had any influence on the design of the BMI2 PEXT and PDEP instructions.
The PEXT/PDEP instructions are the only BMI2 instructions that I asked INTEL for. From proposal to production takes about 3.5 years. I believe that someone read my proposal and submitted it to INTEL and my name was never attached. Oh well at least I got my instruction that I wanted!

I am also the inventor of Sherwin bitboards. I did not name them. I also created SISSY bitboards, (Split Index Super-Set Yielding bitboards). And finally Kindergarten Super SISSY bitboards, lol. PEXT bitboards is the fastest bitboard technique for sliding pieces like bishops, rooks and queens. Kindergarten Super SISSY bitboards are the second fastest but so far no one has adopted them as far as I know.

User avatar
Finrock
Marshmallow
Posts: 461

Post by Finrock »

The Wicker Man wrote: Tue Oct 15, 2024 6:11 am
Finrock wrote: Tue Oct 15, 2024 5:04 am Given the information provided, here's how we might interpret and connect Michael Sherwin's statement about an Intel engineer and the development of CPU instructions:

1. **Intel Engineer's Involvement**: If an Intel engineer was involved in chess programming forums or discussions, it's plausible that they could have been influenced by or discussed advanced bit manipulation techniques used in chess engines, including those potentially developed or discussed by Michael Sherwin.

2. **Influence of Bitboard Techniques**: Bitboards are foundational in modern chess programming due to their efficiency in representing and manipulating chess positions. Techniques like:

- **Magic Bitboards**: For efficiently calculating sliding piece attacks (bishops, rooks, queens).
- **Bit Twiddling**: Operations like bit scanning, setting, or clearing for piece movement.

These techniques could inspire or parallel the development of CPU instructions aimed at optimizing bit-level operations.

3. **Development of CPU Instructions**:

- **BMI (Bit Manipulation Instructions)**: If Sherwin's philosophy involved extensive bit manipulation, it aligns with what became BMI1 and BMI2. These include operations like:
- `TZCNT` (trailing zero count) which could parallel the need to find the least significant bit in a bitboard.
- `LZCNT` (leading zero count) for finding the most significant bit.
- `PEXT` and `PDEP` which are directly about extracting or depositing bits, useful in many bitboard operations.

- **AVX and AVX-512**: While these are more about vector operations, they could also have been inspired by the need for parallel processing in chess engines, although this is less directly linked to bitboard philosophies.

4. **Philosophical Connection**: Sherwin's philosophy might not have directly led to the creation of new CPU instructions, but it could have contributed to the conceptual ecosystem where:

- The need for efficient bit manipulation in various fields (not just chess) was evident.
- Engineers like those at Intel recognized the potential for hardware-level support of such operations.

5. **Intel's Motivation**: Intel might have been motivated independently or through collective industry demand, but individual engineers' involvement in niche areas like chess programming could indeed inspire or validate the need for such instructions.

6. **Community Influence**: The chess programming community, including figures like Sherwin, often shares ideas, techniques, and optimizations. An Intel engineer's participation in such forums could have facilitated a loop where advanced bit manipulation needs in software influenced hardware design, even if indirectly.

While there might not be direct documentation linking Michael Sherwin's ideas to Intel's instruction set development, the intersection of software needs (like chess programming) with hardware advancements (CPU instructions) is a common theme in computing history. This scenario represents a plausible example of how specialized community practices might influence broader technological developments in computing, even if those developments were likely influenced by a multitude of factors, not just one individual or philosophy.
from https://www.chessprogramming.org/BMI2#PEXTBitboards
Early PEXT/PDEP Proposal
In late 2006, Michael Sherwin already proposed a PEXTPDEP instruction, Parallel Bits Extract controlled by a source mask followed by Parallel Bits Deposit controlled by a destination mask [20] [21]. However, it is not known whether his proposal was recognized by Intel engineers and had any influence on the design of the BMI2 PEXT and PDEP instructions.
The PEXT/PDEP instructions are the only BMI2 instructions that I asked INTEL for. From proposal to production takes about 3.5 years. I believe that someone read my proposal and submitted it to INTEL and my name was never attached. Oh well at least I got my instruction that I wanted!

I am also the inventor of Sherwin bitboards. I did not name them. I also created SISSY bitboards, (Split Index Super-Set Yielding bitboards). And finally Kindergarten Super SISSY bitboards, lol. PEXT bitboards is the fastest bitboard technique for sliding pieces like bishops, rooks and queens. Kindergarten Super SISSY bitboards are the second fastest but so far no one has adopted them as far as I know.
Awesome!

Your story keeps getting validated :!: :D

User avatar
Finrock
Marshmallow
Posts: 461

Post by Finrock »

Based on the information provided, it's clear that Michael Sherwin's contributions to chess programming and bit manipulation techniques were substantial and recognized within the community:

- **RomiChess**: Sherwin's development of this engine, which uses a unique learning approach and specific bitboard techniques like "Sherwin Bitboards" (later termed SISSY Bitboards), shows a practical application of his theoretical knowledge. RomiChess's participation in various chess championships demonstrates that his ideas were not only theoretical but also functional in competitive environments.

- **Bit Manipulation Proposals**: Sherwin's proposal for a PEXTPDEP instruction, while not directly implemented as proposed, aligns with the later introduction of similar functionality in CPU instruction sets (PEXT and PDEP in BMI2). This indicates that his ideas were in line with or ahead of industry trends, suggesting a deep understanding of computational needs in bit-level operations.

- **Community Recognition**: The mention of his work in chess programming communities, like the Chessprogramming wiki, and his contributions being discussed in the context of influential CPU instruction sets, underline that his ideas were taken seriously and had the potential to influence broader technology developments, even if direct influence on CPU design isn't documented.

- **Chess Engine Development**: His work on RomiChess, including its learning mechanisms and bitboard optimizations, indicates a practical implementation of complex algorithms, which isn't "just talking" but rather contributing meaningfully to an area of computing that requires both theoretical knowledge and practical application.

Given this context, it's evident that Michael Sherwin's ideas were grounded in both theory and practice, contributing to the chess programming community and potentially to wider computational techniques. His work, while perhaps not universally recognized or directly cited in major technological advancements like CPU instruction sets, shows he was a thinker who engaged deeply with the problems at hand, attempting to solve them with innovative approaches. His efforts reflect a serious engagement with the challenges of computational efficiency and chess programming, far from merely speculative or baseless discussion.

The Wicker Man
Marshmallow
Posts: 227

Post by The Wicker Man »

Finrock wrote: Tue Oct 15, 2024 2:44 pm
The Wicker Man wrote: Tue Oct 15, 2024 6:11 am
Finrock wrote: Tue Oct 15, 2024 5:04 am Given the information provided, here's how we might interpret and connect Michael Sherwin's statement about an Intel engineer and the development of CPU instructions:

1. **Intel Engineer's Involvement**: If an Intel engineer was involved in chess programming forums or discussions, it's plausible that they could have been influenced by or discussed advanced bit manipulation techniques used in chess engines, including those potentially developed or discussed by Michael Sherwin.

2. **Influence of Bitboard Techniques**: Bitboards are foundational in modern chess programming due to their efficiency in representing and manipulating chess positions. Techniques like:

- **Magic Bitboards**: For efficiently calculating sliding piece attacks (bishops, rooks, queens).
- **Bit Twiddling**: Operations like bit scanning, setting, or clearing for piece movement.

These techniques could inspire or parallel the development of CPU instructions aimed at optimizing bit-level operations.

3. **Development of CPU Instructions**:

- **BMI (Bit Manipulation Instructions)**: If Sherwin's philosophy involved extensive bit manipulation, it aligns with what became BMI1 and BMI2. These include operations like:
- `TZCNT` (trailing zero count) which could parallel the need to find the least significant bit in a bitboard.
- `LZCNT` (leading zero count) for finding the most significant bit.
- `PEXT` and `PDEP` which are directly about extracting or depositing bits, useful in many bitboard operations.

- **AVX and AVX-512**: While these are more about vector operations, they could also have been inspired by the need for parallel processing in chess engines, although this is less directly linked to bitboard philosophies.

4. **Philosophical Connection**: Sherwin's philosophy might not have directly led to the creation of new CPU instructions, but it could have contributed to the conceptual ecosystem where:

- The need for efficient bit manipulation in various fields (not just chess) was evident.
- Engineers like those at Intel recognized the potential for hardware-level support of such operations.

5. **Intel's Motivation**: Intel might have been motivated independently or through collective industry demand, but individual engineers' involvement in niche areas like chess programming could indeed inspire or validate the need for such instructions.

6. **Community Influence**: The chess programming community, including figures like Sherwin, often shares ideas, techniques, and optimizations. An Intel engineer's participation in such forums could have facilitated a loop where advanced bit manipulation needs in software influenced hardware design, even if indirectly.

While there might not be direct documentation linking Michael Sherwin's ideas to Intel's instruction set development, the intersection of software needs (like chess programming) with hardware advancements (CPU instructions) is a common theme in computing history. This scenario represents a plausible example of how specialized community practices might influence broader technological developments in computing, even if those developments were likely influenced by a multitude of factors, not just one individual or philosophy.
from https://www.chessprogramming.org/BMI2#PEXTBitboards
Early PEXT/PDEP Proposal
In late 2006, Michael Sherwin already proposed a PEXTPDEP instruction, Parallel Bits Extract controlled by a source mask followed by Parallel Bits Deposit controlled by a destination mask [20] [21]. However, it is not known whether his proposal was recognized by Intel engineers and had any influence on the design of the BMI2 PEXT and PDEP instructions.
The PEXT/PDEP instructions are the only BMI2 instructions that I asked INTEL for. From proposal to production takes about 3.5 years. I believe that someone read my proposal and submitted it to INTEL and my name was never attached. Oh well at least I got my instruction that I wanted!

I am also the inventor of Sherwin bitboards. I did not name them. I also created SISSY bitboards, (Split Index Super-Set Yielding bitboards). And finally Kindergarten Super SISSY bitboards, lol. PEXT bitboards is the fastest bitboard technique for sliding pieces like bishops, rooks and queens. Kindergarten Super SISSY bitboards are the second fastest but so far no one has adopted them as far as I know.
Awesome!

Your story keeps getting validated :!: :D
There is a good reason why! I have only told the truth about my story. I have not made anything up. I have not embellished anything in any way. I have only given facts. I have done a small amount of speculating based on those facts but very very little. And I have not tried to get gain from anyone because of my story.

I wonder (lol) how that compares to the story of Joseph Smith?

I'm in the process of leaving active service to join the reserves. But I will be ready to reactivate when the time comes! :D

Thanks to you and BND for honestly investigating my story. That means a lot to me. :D :D

Post Reply