Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 153 for getUnit (0.31 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

      SmallVector<int32_t> stride_values, rhs_dilation_values;
      for (int64_t i : llvm::seq<int64_t>(1, num_dims - 1)) {
        stride_values.push_back(mlir::cast<IntegerAttr>(strides[i]).getInt());
        rhs_dilation_values.push_back(
            mlir::cast<IntegerAttr>(dilations[i]).getInt());
      }
      window_strides = Create1DConstValue<int32_t>(builder, loc, stride_values);
      lhs_dilation = Create1DConstValue<int32_t>(builder, loc, lhs_dilation_values);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

          return rewriter.notifyMatchFailure(
              squeeze_op, "squeeze dims should have exactly 1 dimension specified");
        }
        int64_t squeeze_axis = mlir::cast<IntegerAttr>(squeeze_dims[0]).getInt();
        if (squeeze_axis < 0) {
          // Always squeeze 4D input to 3D input.
          squeeze_axis += 4;
        }
        if (squeeze_axis != expand_axis) {
          return rewriter.notifyMatchFailure(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

     * NtlmAuthenticator</a> for related information.
     */
    
    public final class NtlmPasswordAuthentication implements Principal, Serializable {
    
        private static final int LM_COMPATIBILITY =
                Config.getInt("jcifs.smb1.smb.lmCompatibility", 3);
    
        private static final Random RANDOM = new Random();
    
        private static LogStream log = LogStream.getInstance();
    
        // KGS!@#$%
        private static final byte[] S8 = {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

            try {
                defaultWorkstation = NbtAddress.getLocalHost().getHostName();
            } catch (UnknownHostException ex) { }
            DEFAULT_WORKSTATION = defaultWorkstation;
            LM_COMPATIBILITY = Config.getInt("jcifs.smb1.smb.lmCompatibility", 3);
        }
    
        /**
         * Creates a Type-3 message using default values from the current
         * environment.
         */
        public Type3Message() {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.9K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         */
        AntBuilder getAnt();
    
        /**
         * <p>Creates an additional <code>AntBuilder</code> for this project. You can use this in your build file to execute
         * ant tasks.</p>
         *
         * @return Creates an <code>AntBuilder</code> for this project. Never returns null.
         * @see #getAnt()
         */
        AntBuilder createAntBuilder();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/stmt.go

    			oselrecv2 := func(dst, recv ir.Node, def bool) {
    				selrecv := ir.NewAssignListStmt(n.Pos(), ir.OSELRECV2, []ir.Node{dst, ir.BlankNode}, []ir.Node{recv})
    				selrecv.Def = def
    				selrecv.SetTypecheck(1)
    				selrecv.SetInit(n.Init())
    				ncase.Comm = selrecv
    			}
    			switch n.Op() {
    			default:
    				pos := n.Pos()
    				if n.Op() == ir.ONAME {
    					// We don't have the right position for ONAME nodes (see #15459 and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/staticinit/sched.go

    		return name, offset, true
    
    	case ir.OINDEX:
    		n := n.(*ir.IndexExpr)
    		if n.X.Type().IsSlice() {
    			break
    		}
    		if name, offset, ok = StaticLoc(n.X); !ok {
    			break
    		}
    		l := getlit(n.Index)
    		if l < 0 {
    			break
    		}
    
    		// Check for overflow.
    		if n.Type().Size() != 0 && types.MaxWidth/n.Type().Size() <= int64(l) {
    			break
    		}
    		offset += int64(l) * n.Type().Size()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/range.go

    	if isMapClear(nrange) {
    		return mapRangeClear(nrange)
    	}
    
    	nfor := ir.NewForStmt(nrange.Pos(), nil, nil, nil, nil, nrange.DistinctVars)
    	nfor.SetInit(nrange.Init())
    	nfor.Label = nrange.Label
    
    	// variable name conventions:
    	//	ohv1, hv1, hv2: hidden (old) val 1, 2
    	//	ha, hit: hidden aggregate, iterator
    	//	hn, hp: hidden len, pointer
    	//	hb: hidden bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/complit.go

    		body = typecheck.Stmt(body)
    		body = orderStmtInPlace(body, map[string][]*ir.Name{})
    
    		loop := ir.NewForStmt(base.Pos, nil, cond, incr, nil, false)
    		loop.Body = []ir.Node{body}
    		loop.SetInit([]ir.Node{zero})
    
    		appendWalkStmt(init, loop)
    		return
    	}
    	// For a small number of entries, just add them directly.
    
    	// Build list of var[c] = expr.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

          if (attr_keys.size() == 2) {
            // The first one is N, and the second one is T
            int list_size =
                mlir::cast<IntegerAttr>(attrs.lookup(attr_keys[0].getValue()))
                    .getInt();
            Type list_type =
                mlir::cast<TypeAttr>(attrs.lookup(attr_keys[1].getValue()))
                    .getValue();
            for (int i = 0; i < list_size; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top