Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 196 for Canonicalize (0.19 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

            ++offset_index;
          }
        }
    
        // Populate the trnaspose permutation params from a "canonicalized" output
        // to the real output.
        // The canonicalized layout would be batch_dims followed by sliced_dims.
        // The current layout is essentially a transpose after the canonicalized
        // layout.
        // Take the following as an example:
        // If we have the:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    (OrB ((Less|Leq)8U  (Const8  [c]) x) (Leq8U  x (Const8  [d]))) && uint8(c)  >= uint8(d+1)  && uint8(d+1)  > uint8(d)  => ((Less|Leq)8U  (Const8  <x.Type> [c-d-1]) (Sub8  <x.Type> x (Const8  <x.Type> [d+1])))
    
    // Canonicalize x-const to x+(-const)
    (Sub64 x (Const64 <t> [c])) && x.Op != OpConst64 => (Add64 (Const64 <t> [-c]) x)
    (Sub32 x (Const32 <t> [c])) && x.Op != OpConst32 => (Add32 (Const32 <t> [-c]) x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	oldMsg := msg
    
    	if n.Length > nonEncodedNameMax {
    		return nil, errNameTooLong
    	}
    
    	// Add a trailing dot to canonicalize name.
    	if n.Length == 0 || n.Data[n.Length-1] != '.' {
    		return oldMsg, errNonCanonicalName
    	}
    
    	// Allow root domain.
    	if n.Data[0] == '.' && n.Length == 1 {
    		return append(msg, 0), nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	return nil
    }
    func (t *testRESTStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	return nil
    }
    func (t *testRESTStrategy) Canonicalize(obj runtime.Object) {}
    
    func NewTestGenericStoreRegistry(t *testing.T) (factory.DestroyFunc, *Store) {
    	return newTestGenericStoreRegistry(t, scheme, false)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (CMN x (MOVWconst [c])) => (CMNconst [c] x)
    (TST x (MOVWconst [c])) => (TSTconst [c] x)
    (TEQ x (MOVWconst [c])) => (TEQconst [c] x)
    
    (SRR x (MOVWconst [c])) => (SRRconst x [c&31])
    
    // Canonicalize the order of arguments to comparisons - helps with CSE.
    (CMP x y) && canonLessThan(x,y) => (InvertFlags (CMP y x))
    
    // don't extend after proper load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  6. testing/integ-test/src/integTest/groovy/org/gradle/integtests/environment/BuildEnvironmentIntegrationTest.groovy

        def "canonicalizes working directory on case insensitive file system"() {
            testProject()
    
            when:
            def mixedCaseDir = new File(testDirectory, "JAVA/QuickStart")
            executer.inDirectory(mixedCaseDir).run()
    
            then:
            noExceptionThrown()
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def "canonicalizes working directory for short windows path"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      // attribute have no host device attribute.
      pm.addPass(mlir::TFTPU::CreateTPUClusterCleanupAttributesPass());
      pm.addNestedPass<FuncOp>(mlir::TFDevice::CreateDeviceAttributeToLaunchPass());
      // Running canonicalizer before decomposing resource ops in cluster helps the
      // latter pass to converge faster as it does not have to spend time folding
      // away dead ops.
      pm.addNestedPass<FuncOp>(mlir::createCanonicalizerPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  8. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (CMPW (MOVLconst [c]) x) => (InvertFlags (CMPWconst x [int16(c)]))
    (CMPB x (MOVLconst [c])) => (CMPBconst x [int8(c)])
    (CMPB (MOVLconst [c]) x) => (InvertFlags (CMPBconst x [int8(c)]))
    
    // Canonicalize the order of arguments to comparisons - helps with CSE.
    (CMP(Q|L|W|B) x y) && canonLessThan(x,y) => (InvertFlags (CMP(Q|L|W|B) y x))
    
    // Using MOVZX instead of AND is cheaper.
    (AND(Q|L)const [  0xFF] x) => (MOVBQZX x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  9. doc/next/6-stdlib/2-unique.md

    ### New unique package
    
    The new [unique] package provides facilities for
    canonicalizing values (like "interning" or "hash-consing").
    
    Any value of comparable type may be canonicalized with the new
    `Make[T]` function, which produces a reference to a canonical copy of
    the value in the form of a `Handle[T]`.
    Two `Handle[T]` are equal if and only if the values used to produce the
    handles are equal, allowing programs to deduplicate values and reduce
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 566 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (RORW x (MOVDconst [c])) => (RORWconst x [c&31])
    
    (ADDSflags x (MOVDconst [c]))  => (ADDSconstflags [c] x)
    
    (ADDconst [c] y) && c < 0 => (SUBconst [-c] y)
    
    // Canonicalize the order of arguments to comparisons - helps with CSE.
    ((CMP|CMPW) x y) && canonLessThan(x,y) => (InvertFlags ((CMP|CMPW) y x))
    
    // mul-neg => mneg
    (NEG  (MUL  x y)) => (MNEG  x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
Back to top