Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 93 for indy (0.24 sec)

  1. src/go/types/index.go

    			x = 0
    		case length >= 0:
    			// default is length (== capacity) otherwise
    			x = length
    		}
    		ind[i] = x
    	}
    
    	// constant indices must be in range
    	// (check.index already checks that existing indices >= 0)
    L:
    	for i, x := range ind[:len(ind)-1] {
    		if x > 0 {
    			for j, y := range ind[i+1:] {
    				if y >= 0 && y < x {
    					// The value y corresponds to the expression e.Index[i+1+j].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/fold_broadcast_pass.cc

    int64_t GetElementIndex(llvm::SmallVectorImpl<int64_t> &shape,
                            llvm::SmallVectorImpl<int64_t> &current_index) {
      int64_t ind = 0;
      int64_t mul = 1;
      for (int i = shape.size() - 1; i >= 0; --i) {
        ind += (current_index[i] % shape[i]) * mul;
        mul *= shape[i];
      }
      return ind;
    }
    
    // Helper method that increment index represented in 'current_index_ptr'
    // in the shape of 'result_shape'.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      // CHECK: %[[INDS:.*]] = "tf.Const"() <{value = dense<[2, 1]> : tensor<2xi32>}> : () -> tensor<2xi32>
      %indices = "tf.Const"() {value = dense<[2, 1]> : tensor<2xi32>} : () -> tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/collection_ops_util.cc

      if (!const_op) return -1;
      int64_t last_index = -1;
      int64_t first_index = -1;
      for (const auto& ind : const_op.getValue().getValues<APInt>()) {
        if (last_index == -1) {
          last_index = ind.getSExtValue();
          first_index = last_index;
          continue;
        }
        if (last_index + 1 != ind.getSExtValue()) return -1;
        last_index++;
      }
      return first_index;
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

    * Update amd64 kube-proxy base image to debian-iptables-amd64:v5 ([#39725](https://github.com/kubernetes/kubernetes/pull/39725), [@ixdy](https://github.com/ixdy))
    * Update kube-proxy image to be based off of Debian 8.6 base image. ([#39695](https://github.com/kubernetes/kubernetes/pull/39695), [@ixdy](https://github.com/ixdy))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom

          <email>******@****.***</email>
          <roles>
            <role>Developer</role>
          </roles>
        </developer>
        <developer>
          <name>Andrew Williams</name>
          <id>handyande</id>
          <email>andy@handyande.co.uk</email>
          <roles>
            <role>Developer</role>
          </roles>
        </developer>
      </developers>
      <dependencies>
        <dependency>
          <groupId>junit</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 7.5K bytes
    - Viewed (0)
  7. clause/expression_test.go

    		},
    		ExpectedVars: []interface{}{100},
    		Result:       "SUM(`users`.`id`) >= ?",
    	}}
    
    	for idx, result := range results {
    		for idy, expression := range result.Expressions {
    			t.Run(fmt.Sprintf("case #%v.%v", idx, idy), func(t *testing.T) {
    				user, _ := schema.Parse(&tests.User{}, &sync.Map{}, db.NamingStrategy)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Aug 10 05:34:33 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.4.md

    * list-resources: don't fail if the grep fails to match any resources ([#41933](https://github.com/kubernetes/kubernetes/pull/41933), [@ixdy](https://github.com/ixdy))
    * Update gcr.io/google-containers/rescheduler to v0.2.2, which uses busybox as a base image instead of ubuntu. ([#41911](https://github.com/kubernetes/kubernetes/pull/41911), [@ixdy](https://github.com/ixdy))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.cc

      const TorchAvgPoolData pool = GetTorchAvgPoolData(op);
    
      const auto values = GetPadOpPaddingValues(pool);
    
      llvm::SmallVector<int32_t> padding_vec(8, 0);  // NHWC
      for (auto [ind, val] : llvm::enumerate(values)) {
        padding_vec[ind + 2] = val;
      }
    
      auto padding_shape = RankedTensorType::get({4, 2}, builder.getI32Type());
      return DenseIntElementsAttr::get(padding_shape, padding_vec);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. test/nilptr.go

    	var t *T
    	println(t.i) // should crash
    }
    
    type T1 struct {
    	T
    }
    
    type T2 struct {
    	*T1
    }
    
    func p11() {
    	t := &T2{}
    	p := &t.i
    	println(*p)
    }
    
    // ADDR(DOT(IND(p))) needs a check also
    func p12() {
    	var p *T = nil
    	println(*(&((*p).i)))
    }
    
    // Tests suggested in golang.org/issue/6080.
    
    func p13() {
    	var x *[10]int
    	y := x[:]
    	_ = y
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top