@@ -513,47 +513,6 @@ top fn main(p: bits[2], x: bits[16], y: bits[16], d: bits[16]) -> bits[16] {
513
513
IsOkAndHolds (Value (UBits (0xf1ef , 16 ))));
514
514
}
515
515
516
- TEST_P (CombinationalGeneratorTest, PrioritySelectSelectorNeverZero) {
517
- std::string text = R"(
518
- package PrioritySelectSelectorNeverZero
519
-
520
- top fn main(p: bits[2], x: bits[16], y: bits[16], d: bits[16]) -> bits[16] {
521
- literal.1: bits[2] = literal(value=1)
522
- or.2: bits[2] = or(p, literal.1)
523
- ret priority_sel.3: bits[16] = priority_sel(or.2, cases=[x, y], default=d)
524
- }
525
- )" ;
526
- XLS_ASSERT_OK_AND_ASSIGN (std::unique_ptr<Package> package,
527
- Parser::ParsePackage (text));
528
-
529
- std::optional<FunctionBase*> top = package->GetTop ();
530
- ASSERT_TRUE (top.has_value ());
531
- XLS_ASSERT_OK_AND_ASSIGN (
532
- auto result, GenerateCombinationalModule (top.value (), codegen_options ()));
533
-
534
- ExpectVerilogEqualToGoldenFile (GoldenFilePath (kTestName , kTestdataPath ),
535
- result.verilog_text );
536
-
537
- ModuleSimulator simulator =
538
- NewModuleSimulator (result.verilog_text , result.signature );
539
- absl::flat_hash_map<std::string, Value> args = {
540
- {" x" , Value (UBits (0x00ff , 16 ))},
541
- {" y" , Value (UBits (0xf0f0 , 16 ))},
542
- {" d" , Value (UBits (0xff00 , 16 ))}};
543
- args[" p" ] = Value (UBits (0b00 , 2 ));
544
- EXPECT_THAT (simulator.RunFunction (args),
545
- IsOkAndHolds (Value (UBits (0x00ff , 16 ))));
546
- args[" p" ] = Value (UBits (0b01 , 2 ));
547
- EXPECT_THAT (simulator.RunFunction (args),
548
- IsOkAndHolds (Value (UBits (0x00ff , 16 ))));
549
- args[" p" ] = Value (UBits (0b10 , 2 ));
550
- EXPECT_THAT (simulator.RunFunction (args),
551
- IsOkAndHolds (Value (UBits (0x00ff , 16 ))));
552
- args[" p" ] = Value (UBits (0b11 , 2 ));
553
- EXPECT_THAT (simulator.RunFunction (args),
554
- IsOkAndHolds (Value (UBits (0x00ff , 16 ))));
555
- }
556
-
557
516
TEST_P (CombinationalGeneratorTest, PrioritySelectWithAndWithoutDefault) {
558
517
// Tests that the different specialized ways of codegen'ing priority selects
559
518
// are applied in the right context, e.g. we don't make a no-default priority
@@ -734,48 +693,6 @@ top fn main(p: bits[2], x_short: bits[16][2], x_long: bits[16][4], y_short: bits
734
693
IsOkAndHolds (Value::Tuple ({x_short_value, x_long_value})));
735
694
}
736
695
737
- TEST_P (CombinationalGeneratorTest, PrioritySelectArraySelectorNeverZero) {
738
- std::string text = R"(
739
- package PrioritySelectArraySelectorNeverZero
740
-
741
- top fn main(p: bits[2], x: bits[16][4], y: bits[16][4], d: bits[16][4]) -> bits[16][4] {
742
-
743
- literal.1: bits[2] = literal(value=1)
744
- or.2: bits[2] = or(p, literal.1)
745
- ret priority_sel.3: bits[16][4] = priority_sel(or.2, cases=[x, y], default=d)
746
- }
747
- )" ;
748
- XLS_ASSERT_OK_AND_ASSIGN (std::unique_ptr<Package> package,
749
- Parser::ParsePackage (text));
750
-
751
- std::optional<FunctionBase*> top = package->GetTop ();
752
- ASSERT_TRUE (top.has_value ());
753
- XLS_ASSERT_OK_AND_ASSIGN (
754
- auto result, GenerateCombinationalModule (top.value (), codegen_options ()));
755
-
756
- ExpectVerilogEqualToGoldenFile (GoldenFilePath (kTestName , kTestdataPath ),
757
- result.verilog_text );
758
-
759
- ModuleSimulator simulator =
760
- NewModuleSimulator (result.verilog_text , result.signature );
761
- XLS_ASSERT_OK_AND_ASSIGN (
762
- Value x_value, Value::UBitsArray ({0x00ff , 0x00ff , 0x00ff , 0x00ff }, 16 ));
763
- XLS_ASSERT_OK_AND_ASSIGN (
764
- Value y_value, Value::UBitsArray ({0xf0f0 , 0xf0f0 , 0xf0f0 , 0xf0f0 }, 16 ));
765
- XLS_ASSERT_OK_AND_ASSIGN (
766
- Value d_value, Value::UBitsArray ({0xff00 , 0xff00 , 0xff00 , 0xff00 }, 16 ));
767
- absl::flat_hash_map<std::string, Value> args = {
768
- {" x" , x_value}, {" y" , y_value}, {" d" , d_value}};
769
- args[" p" ] = Value (UBits (0b00 , 2 ));
770
- EXPECT_THAT (simulator.RunFunction (args), IsOkAndHolds (x_value));
771
- args[" p" ] = Value (UBits (0b01 , 2 ));
772
- EXPECT_THAT (simulator.RunFunction (args), IsOkAndHolds (x_value));
773
- args[" p" ] = Value (UBits (0b10 , 2 ));
774
- EXPECT_THAT (simulator.RunFunction (args), IsOkAndHolds (x_value));
775
- args[" p" ] = Value (UBits (0b11 , 2 ));
776
- EXPECT_THAT (simulator.RunFunction (args), IsOkAndHolds (x_value));
777
- }
778
-
779
696
TEST_P (CombinationalGeneratorTest, PrioritySelectArrayOneHot) {
780
697
std::string text = R"(
781
698
package PrioritySelectArrayOneHot
0 commit comments