Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Maxc (0.04 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/renderer/ConsoleConfigurationReportRenderer.java

        }
    
        private void writeRuleSchema(List<ReportAttribute> attributesWithCompatibilityRules, List<ReportAttribute> attributesWithDisambiguationRules) {
            final Integer maxC
                = attributesWithCompatibilityRules.stream().map(attr -> attr.getName().length()).max(Integer::compare).orElse(0);
            if (!attributesWithCompatibilityRules.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 16:17:12 UTC 2022
    - 18.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant.mlir

      %maxi = "tf.Identity"(%max) : (tensor<f32>) -> tensor<f32>
      %minc = "tf.Cast"(%mini) : (tensor<f32>) -> tensor<f32>
      %maxc = "tf.Cast"(%maxi) : (tensor<f32>) -> tensor<f32>
      %rst = "tf.FakeQuantWithMinMaxVars"(%in, %minc, %maxc) {num_bits = 5, narrow_range = false} : (tensor<8xf32>, tensor<f32>, tensor<f32>) -> tensor<8xf32>
      func.return %rst : tensor<8xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. src/encoding/gob/codec_test.go

    	}
    
    	// complex64
    	b.Reset()
    	it = inputT{
    		Maxc: complex(math.MaxFloat32*2, math.MaxFloat32*2),
    	}
    	type outc64 struct {
    		Maxc complex64
    		Minc complex64
    	}
    	var o8 outc64
    	enc.Encode(it)
    	err = dec.Decode(&o8)
    	if err == nil || err.Error() != `value for "Maxc" out of range` {
    		t.Error("wrong overflow error for complex64:", err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant-4bit.mlir

      %maxi = "tf.Identity"(%max) : (tensor<f32>) -> tensor<f32>
      %minc = "tf.Cast"(%mini) : (tensor<f32>) -> tensor<f32>
      %maxc = "tf.Cast"(%maxi) : (tensor<f32>) -> tensor<f32>
      %rst = "tf.FakeQuantWithMinMaxVars"(%in, %minc, %maxc) {num_bits = 3, narrow_range = false} : (tensor<8xf32>, tensor<f32>, tensor<f32>) -> tensor<8xf32>
      func.return %rst : tensor<8xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/a.out.go

    	ACMPBEQ
    	ACMPBGE
    	ACMPBGT
    	ACMPBLE
    	ACMPBLT
    	ACMPBNE
    	ACMPUBEQ
    	ACMPUBGE
    	ACMPUBGT
    	ACMPUBLE
    	ACMPUBLT
    	ACMPUBNE
    
    	// storage-and-storage
    	AMVC
    	AMVCIN
    	ACLC
    	AXC
    	AOC
    	ANC
    
    	// load
    	AEXRL
    	ALARL
    	ALA
    	ALAY
    
    	// interlocked load and op
    	ALAA
    	ALAAG
    	ALAAL
    	ALAALG
    	ALAN
    	ALANG
    	ALAX
    	ALAXG
    	ALAO
    	ALAOG
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. src/regexp/testdata/basic.dat

    E	ab?bc			abbc		(0,4)
    E	ab?bc			abc		(0,3)
    E	ab?c			abc		(0,3)
    BE	^abc$			abc		(0,3)
    BE	^abc			abcc		(0,3)
    BE	abc$			aabc		(1,4)
    BE	^			abc		(0,0)
    BE	$			abc		(3,3)
    BE	a.c			abc		(0,3)
    BE	a.c			axc		(0,3)
    BE	a.*c			axyzc		(0,5)
    BE	a[bc]d			abd		(0,3)
    BE	a[b-d]e			ace		(0,3)
    BE	a[b-d]			aac		(1,3)
    BE	a[-b]			a-		(0,2)
    BE	a[b-]			a-		(0,2)
    BE	a]			a]		(0,2)
    BE	a[]]b			a]b		(0,3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  7. architecture/networking/pilot.md

        iwhc("Injection Webhook")
        vwhc("Validation Webhook")
        nsc("Namespace Controller")
        ksd--"External Istiod"-->nsc
        ksd--"External Istiod"-->iwhc
    
        df("Discovery Filter")
    
        axc("Auto Export Controller")
    
        mcfg("Mesh Config")
        dfc("Default Revision Controller")
    ```
    
    As you can see, the landscape of controllers is pretty extensive at this point.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. src/regexp/all_test.go

    	{"", "x", "abc", "xaxbxcx"},
    
    	// Test empty input and/or replacement, with pattern that does not match the empty string.
    	{"b", "", "", ""},
    	{"b", "x", "", ""},
    	{"b", "", "abc", "ac"},
    	{"b", "x", "abc", "axc"},
    	{"y", "", "", ""},
    	{"y", "x", "", ""},
    	{"y", "", "abc", "abc"},
    	{"y", "x", "abc", "abc"},
    
    	// Multibyte characters -- verify that we don't try to match in the middle
    	// of a character.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    		case AMULHD:
    			opset(AMULHDU, r)
    		case AMOVBZ:
    			opset(AMOVH, r)
    			opset(AMOVHZ, r)
    		case ALA:
    			opset(ALAY, r)
    		case AMVC:
    			opset(AMVCIN, r)
    			opset(ACLC, r)
    			opset(AXC, r)
    			opset(AOC, r)
    			opset(ANC, r)
    		case ASTCK:
    			opset(ASTCKC, r)
    			opset(ASTCKE, r)
    			opset(ASTCKF, r)
    		case ALAAG:
    			opset(ALAA, r)
    			opset(ALAAL, r)
    			opset(ALAALG, r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top