Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for Result (0.18 sec)

  1. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// match: (AtomicLoad32 ptr mem)
    	// result: (LoweredAtomicLoad32 [1] ptr mem)
    	for {
    		ptr := v_0
    		mem := v_1
    		v.reset(OpPPC64LoweredAtomicLoad32)
    		v.AuxInt = int64ToAuxInt(1)
    		v.AddArg2(ptr, mem)
    		return true
    	}
    }
    func rewriteValuePPC64_OpAtomicLoad64(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (AtomicLoad64 ptr mem)
    	// result: (LoweredAtomicLoad64 [1] ptr mem)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite386.go

    	// match: (ADDL x (SHLLconst [3] y))
    	// result: (LEAL8 x y)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != Op386SHLLconst || auxIntToInt32(v_1.AuxInt) != 3 {
    				continue
    			}
    			y := v_1.Args[0]
    			v.reset(Op386LEAL8)
    			v.AddArg2(x, y)
    			return true
    		}
    		break
    	}
    	// match: (ADDL x (SHLLconst [2] y))
    	// result: (LEAL4 x y)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteS390X.go

    	// match: (Add64F x y)
    	// result: (Select0 (FADD x y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpSelect0)
    		v0 := b.NewValue0(v.Pos, OpS390XFADD, types.NewTuple(typ.Float64, types.TypeFlags))
    		v0.AddArg2(x, y)
    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValueS390X_OpAddr(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Addr {sym} base)
    	// result: (MOVDaddr {sym} base)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteARM.go

    	// result: (ADDshiftRLreg x y z)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != OpARMSRL {
    				continue
    			}
    			z := v_1.Args[1]
    			y := v_1.Args[0]
    			v.reset(OpARMADDshiftRLreg)
    			v.AddArg3(x, y, z)
    			return true
    		}
    		break
    	}
    	// match: (ADD x (SRA y z))
    	// result: (ADDshiftRAreg x y z)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: mhlo.return %[[RESULT1]], %[[RESULT3]] : tensor<i64>, tensor<i32>
      // CHECK: return %[[REDUCE]]#1 : tensor<7xi32>
      %axis = "tf.Const"() { value = dense<0> : tensor<i32> } : () -> tensor<i32>
      %0 = "tf.ArgMax"(%arg0, %axis) : (tensor<3x7xi64>, tensor<i32>) -> tensor<7xi32>
      func.return %0 : tensor<7xi32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          return failure();
    
        Location loc = op.getLoc();
        Value result = rewriter.create<mhlo::ConstantOp>(loc, op.getValue());
        if (result.getType() != op.getType())
          result = rewriter.create<tensor::CastOp>(loc, op.getType(), result);
        rewriter.replaceOp(op, result);
        return success();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      // CHECK: %[[RESULT:.*]] = "tfl.transpose_conv"(%[[SHAPE]], %[[WEIGHTS]], %arg0, %[[BIAS]])
      // CHECK: return %[[RESULT]]
    }
    
    // CHECK-LABEL: fuseSubIntoTransposeConv
    func.func @fuseSubIntoTransposeConv(%arg0: tensor<1x32x42x128xf32>) -> tensor<1x64x84x32xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

    that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    JUnitCore(); public static transient void main(String[]); public static transient Result runClasses(Class[]); public static transient Result runClasses(Computer, Class[]); transient Result runMain(org.junit.internal.JUnitSystem, String[]); public String getVersion(); public transient Result run(Class[]); public transient Result run(Computer, Class[]); public Result run(Request); public Result run(junit.framework.Test); public Result run(Runner); public void addListener(notification.RunListener); public void...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier_test.go

    	expected = strings.TrimLeft(expected, " \t\n")
    
    	result, err := sortIPTablesRules(strings.TrimLeft(result, " \t\n"))
    	if err != nil {
    		t.Fatalf("%s", err)
    	}
    
    	lineStr := ""
    	if line != 0 {
    		lineStr = fmt.Sprintf(" (from line %d)", line)
    	}
    	if diff := cmp.Diff(expected, result); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top