Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for div1 (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            file("lib/dir1.classes").file("child").createFile()
    
            when:
            succeeds ":util:resolve", ":app:resolve"
    
            then:
            output.count("files: [dir1.classes.dir]") == 2
    
            output.count("Transformed") == 1
            isTransformed("dir1.classes", "dir1.classes.dir")
            def outputDir1 = outputDir("dir1.classes", "dir1.classes.dir").assertIsDir()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

        (Const64 <typ.UInt64> [umagic64(c).s-1]))
    
    // Signed divide by a negative constant.  Rewrite to divide by a positive constant.
    (Div8  <t> n (Const8  [c])) && c < 0 && c != -1<<7  => (Neg8  (Div8  <t> n (Const8  <t> [-c])))
    (Div16 <t> n (Const16 [c])) && c < 0 && c != -1<<15 => (Neg16 (Div16 <t> n (Const16 <t> [-c])))
    (Div32 <t> n (Const32 [c])) && c < 0 && c != -1<<31 => (Neg32 (Div32 <t> n (Const32 <t> [-c])))
    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/cmd/go/internal/load/pkg.go

    			base.Fatalf("%s", err)
    		}
    		if fi.IsDir() {
    			base.Fatalf("%s is a directory, should be a Go file", file)
    		}
    		dir1 := filepath.Dir(file)
    		if dir == "" {
    			dir = dir1
    		} else if dir != dir1 {
    			base.Fatalf("named files must all be in one directory; have %s and %s", dir, dir1)
    		}
    		dirent = append(dirent, fi)
    	}
    	ctxt.ReadDir = func(string) ([]fs.FileInfo, error) { return dirent, nil }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        if (dim0 != ShapedType::kDynamic && dim0 != 4)
          return op.emitOpError(
              "requires first dimensions of 2D input to be of size 4");
    
        int64_t dim1 = input_ty.getDimSize(1);
        if (dim1 != ShapedType::kDynamic && dim1 != 2)
          return op.emitOpError(
              "requires second dimensions of 2D input to be of size 2");
      }
    
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Select0 (Mul64uhilo x y)) => (UMULH x y)
    (Select1 (Mul64uhilo x y)) => (MUL x y)
    
    (Div64 [false] x y) => (DIV  x y)
    (Div32 [false] x y) => (DIVW x y)
    (Div16 [false] x y) => (DIVW (SignExt16to32 x) (SignExt16to32 y))
    (Div16u x y) => (UDIVW (ZeroExt16to32 x) (ZeroExt16to32 y))
    (Div8   x y) => (DIVW  (SignExt8to32  x) (SignExt8to32  y))
    (Div8u  x y) => (UDIVW (ZeroExt8to32  x) (ZeroExt8to32  y))
    (Div64u ...) => (UDIV  ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		return true
    	}
    }
    func rewriteValueRISCV64_OpDiv16(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div16 x y [false])
    	// result: (DIVW (SignExt16to32 x) (SignExt16to32 y))
    	for {
    		if auxIntToBool(v.AuxInt) != false {
    			break
    		}
    		x := v_0
    		y := v_1
    		v.reset(OpRISCV64DIVW)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
Back to top