Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for bargs (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      // CHECK: ^bb0(%[[BARG0:.*]]: tensor<f32>, %[[BARG1:.*]]: tensor<i32>):
      ^bb0(%barg0: tensor<f32>, %barg1: tensor<i32>):
        // CHECK: %[[PRED:.*]] = "tf._SomeOp"(%[[BARG1]])
        // CHECK: "tf.Yield"(%[[PRED]])
        %pred = "tf._SomeOp"(%barg1) : (tensor<i32>) -> tensor<i1>
        "tf.Yield" (%pred) : (tensor<i1>) -> ()
      }, {
      // CHECK: ^bb0(%[[BARG0:.*]]: tensor<f32>, %[[BARG1:.*]]: tensor<i32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

                ^bb1(%barg0: tensor<i32>, %barg1: !tf_ref, %barg2: !tf_ref, %barg3: !tf_ref):
                  %read0 = "tf.ReadVariableOp"(%barg1) : (!tf_ref) -> tensor<f32>
                  %add0 = "tf.AddV2"(%read0, %read0) : (tensor<f32>, tensor<f32>) -> tensor<f32>
                  "tf.AssignVariableOp"(%barg1, %add0) : (!tf_ref, tensor<f32>) -> ()
                  %read1 = "tf.ReadVariableOp"(%barg1) : (!tf_ref) -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/prove.go

    	switch v.Op {
    	case OpAdd64, OpAdd32, OpAdd16, OpAdd8:
    		if v.Args[0].Op == cop {
    			return v.Args[1], v.Args[0].AuxInt
    		}
    		if v.Args[1].Op == cop {
    			return v.Args[0], v.Args[1].AuxInt
    		}
    	case OpSub64, OpSub32, OpSub16, OpSub8:
    		if v.Args[1].Op == cop {
    			aux := v.Args[1].AuxInt
    			if aux != -aux { // Overflow; too bad
    				return v.Args[0], -aux
    			}
    		}
    	}
    	return nil, 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    			args:  []string{"pods,services/foo"},
    			errFn: expectErr,
    		},
    		"unknown resource type": {
    			args:  []string{"unknown/foo"},
    			errFn: expectErr,
    		},
    		"leading slash": {
    			args:  []string{"/bar"},
    			errFn: expectErr,
    		},
    		"trailing slash": {
    			args:  []string{"bar/"},
    			errFn: expectErr,
    		},
    		"valid status subresource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_test.go

    type clientTest struct {
    	// name is a freeform string identifying the test and the file in which
    	// the expected results will be stored.
    	name string
    	// args, if not empty, contains a series of arguments for the
    	// command to run for the reference server.
    	args []string
    	// config, if not nil, contains a custom Config to use for this test.
    	config *Config
    	// cert, if not empty, contains a DER-encoded certificate for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

          }
          args.push_back(scast_op.getResult());
        }
        args.insert(args.end(), qparam_args.begin(), qparam_args.end());
        // For XLA opset, try to merge quantized functions with following Dequantize
        // for optimization.
        if (target_opset_ == OpSet::XLA) {
          if (failed(mergeDequantizeOpFollowingQuantizedFunction(call_op, args,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        }
    
        public static void main(String[] args) {
            int result = main(args, null);
    
            System.exit(result);
        }
    
        public static int main(String[] args, ClassWorld classWorld) {
            MavenCli cli = new MavenCli();
    
            MessageUtils.systemInstall();
            MessageUtils.registerShutdownHook();
            int result = cli.doMain(new CliRequest(args, classWorld));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. cmd/test-utils_test.go

    	if err != nil {
    		args.t.Fatalf("Initialization of object layer failed for Erasure setup: %s", err)
    	}
    	defer objLayer.Shutdown(ctx)
    
    	bucketErasure, erAPIRouter, err := initAPIHandlerTest(ctx, objLayer, args.endpoints, args.makeBucketOptions)
    	if err != nil {
    		args.t.Fatalf("Initialization of API handler tests failed: <ERROR> %s", err)
    	}
    
    	if args.init != nil {
    		args.init()
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  9. src/go/types/api_test.go

    			for ii, inst := range instances {
    				var targs []Type
    				for i := 0; i < inst.Inst.TypeArgs.Len(); i++ {
    					targs = append(targs, inst.Inst.TypeArgs.At(i))
    				}
    				typ := inst.Inst.Type
    
    				testInst := test.instances[ii]
    				if got := inst.Ident.Name; got != testInst.name {
    					t.Fatalf("got name %s, want %s", got, testInst.name)
    				}
    				if len(targs) != len(testInst.targs) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    			continue
    		}
    		// Decode args.
    		var args Args
    		for j, aop := range f.args {
    			if aop == 0 {
    				break
    			}
    			arg := decodeArg(aop, x)
    			if arg == nil { // Cannot decode argument
    				continue Search
    			}
    			args[j] = arg
    		}
    		decoderCover[i] = true
    		inst = Inst{
    			Op:   f.op,
    			Args: args,
    			Enc:  x,
    		}
    		return inst, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
Back to top