Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 93 for Helvert (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

      }
    
      // Remove unused transpose operations.
      while (!transpose_ops.empty()) {
        TransposeOp transpose = transpose_ops.pop_back_val();
        transpose.erase();
      }
    }
    
    // Revert the permutation applied in `type`.
    static mlir::ShapedType ReversePermuteShapedType(
        mlir::ShapedType type, ArrayRef<int64_t> permutation) {
      if (!type.hasRank()) return type;
    
      auto shape = type.getShape();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. cmd/storage-datatypes.go

    	BaseOptions
    	Recursive bool `msg:"r"`
    	Immediate bool `msg:"i"`
    	UndoWrite bool `msg:"u"`
    	// OldDataDir of the previous object
    	OldDataDir string `msg:"o,omitempty"` // old data dir used only when to revert a rename()
    }
    
    // BaseOptions represents common options for all Storage API calls
    type BaseOptions struct{}
    
    // RenameOptions represents rename API options, currently its same as BaseOptions
    type RenameOptions struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tpu_sharding_identification.mlir

    func.func @cluster_func() -> tensor<f32> {
      %0 = "tf.Const"() {value = dense<0.0> : tensor<f32>} : () -> tensor<f32>
      func.return %0 : tensor<f32>
    }
    
    // -----
    
    // Tests if any of inputs have MAXIMAL sharding, then revert to MPMD.
    
    // CHECK-LABEL: func @partitioned_input_maximal_sharding_revert_mpmd
    func.func @partitioned_input_maximal_sharding_revert_mpmd(%arg0: tensor<*xi32>, %arg1: tensor<*xi32>) -> (tensor<*xi32>, tensor<*xi32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 19:07:52 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  4. CONTRIBUTING.md

    - Select a Java 11 VM as "Gradle JVM"
    - In the "File already exists" dialogue, choose "Yes" to overwrite
    - In the "Open Project" dialogue, choose "Delete Existing Project and Import"
    - Revert the Git changes to files in the `.idea` folder
    
    NOTE: Due to the project size, the very first import can take a while and IntelliJ might become unresponsive for several seconds during this period.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. test/chan/powser2.go

    		for c, i := 1, 0; i < N; i++ {
    			if i%2 == 0 {
    				a[i] = zero
    			} else {
    				a[i] = i2tor(int64(c), int64(i))
    				c *= -1
    			}
    		}
    		checka(at, a, "ATan") // 0 -1 0 -1/3 0 -1/5
    		/*
    			t := Revert(Integ(zero, MonSubst(Ones, neg(one), 2)))
    			a[0] = zero
    			a[1] = itor(1)
    			a[2] = zero
    			a[3] = i2tor(1,3)
    			a[4] = zero
    			a[5] = i2tor(2,15)
    			a[6] = zero
    			a[7] = i2tor(17,315)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  6. test/chan/powser1.go

    		for c, i := 1, 0; i < N; i++ {
    			if i%2 == 0 {
    				a[i] = zero
    			} else {
    				a[i] = i2tor(int64(c), int64(i))
    				c *= -1
    			}
    		}
    		checka(at, a, "ATan") // 0 -1 0 -1/3 0 -1/5
    		/*
    			t := Revert(Integ(zero, MonSubst(Ones, neg(one), 2)))
    			a[0] = zero
    			a[1] = itor(1)
    			a[2] = zero
    			a[3] = i2tor(1,3)
    			a[4] = zero
    			a[5] = i2tor(2,15)
    			a[6] = zero
    			a[7] = i2tor(17,315)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/iimport.go

    		// bound.
    		if r.p.exportVersion < iexportVersionGenerics {
    			errorf("unexpected type param type")
    		}
    		// Remove the "path" from the type param name that makes it unique,
    		// and revert any unique name used for blank typeparams.
    		name0 := tparamName(name)
    		tn := types.NewTypeName(pos, r.currPkg, name0, nil)
    		t := types.NewTypeParam(tn, nil)
    		// To handle recursive references to the typeparam within its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_2x.md

    advice on upgrading from 1.x to 2.x.
    
     *  Fix: Don't leak connections! There was a regression in 2.0.0-RC1 where
        connections were neither closed nor pooled.
     *  Fix: Revert builder-style return types from OkHttpClient's timeout methods
        for binary compatibility with OkHttp 1.x.
     *  Fix: Don't skip client stream 1 on SPDY/3.1. This fixes SPDY connectivity to
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// CreateStrategy implements resource-specific behavior during creation.
    	CreateStrategy rest.RESTCreateStrategy
    	// BeginCreate is an optional hook that returns a "transaction-like"
    	// commit/revert function which will be called at the end of the operation,
    	// but before AfterCreate and Decorator, indicating via the argument
    	// whether the operation succeeded.  If this returns an error, the function
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                //if a new date...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
Back to top