Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for XNOR (0.04 sec)

  1. src/cmd/internal/obj/riscv/anames.go

    	"MRET",
    	"SRET",
    	"DRET",
    	"WFI",
    	"SFENCEVMA",
    	"ADDUW",
    	"SH1ADD",
    	"SH1ADDUW",
    	"SH2ADD",
    	"SH2ADDUW",
    	"SH3ADD",
    	"SH3ADDUW",
    	"SLLIUW",
    	"ANDN",
    	"ORN",
    	"XNOR",
    	"CLZ",
    	"CLZW",
    	"CTZ",
    	"CTZW",
    	"CPOP",
    	"CPOPW",
    	"MAX",
    	"MAXU",
    	"MIN",
    	"MINU",
    	"SEXTB",
    	"SEXTH",
    	"ZEXTH",
    	"ROL",
    	"ROLW",
    	"ROR",
    	"RORI",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/riscv64.s

    	MINU	X30, X5, X6				// 33d3e20b
    	MINU	X30, X5					// b3d2e20b
    	ORN	X6, X7, X8				// 33e46340
    	ORN	X6, X7					// b3e36340
    	SEXTB	X16, X17				// 93184860
    	SEXTH	X17, X18				// 13995860
    	XNOR	X18, X19, X20				// 33ca2941
    	XNOR	X18, X19				// b3c92941
    	ZEXTH	X19, X20				// 3bca0908
    
    	// 1.3: Bitwise Rotation (Zbb)
    	ROL	X8, X9, X10				// 33958460 or b30f8040b3dff4013395840033e5af00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        if bias_size is None and has_bias:
          bias_size = weight_shape[-1]
    
        # Verify that when bias_size is not None, has_bias should be True.
        # And if bias_size is None, has_bias should be False using XNOR
        assert not ((bias_size is not None) ^ has_bias)
    
        # Verify that bias size is correct
        if bias_size:
          input_height = input_shape[0] if len(input_shape) == 2 else input_shape[1]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top