Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for Clip (0.08 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    as `t`. The minimum value to clip by.}]>:$clip_value_min,
        Arg<TensorOf<[TF_Bfloat16, TF_Complex128, TF_Complex64, TF_Float16, TF_Float32, TF_Float64, TF_Int16, TF_Int32, TF_Int64, TF_Int8, TF_Qint16, TF_Qint32, TF_Qint8, TF_Quint16, TF_Quint8, TF_Uint16, TF_Uint32, TF_Uint64, TF_Uint8]>, [{A 0-D (scalar) `Tensor`, or a `Tensor` with the same shape
    as `x`. The maximum value to clip by.}]>:$clip_value_max
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    .dlist dt code {
    	color: var(--text-color);
    	font-size: 1em;
    	font-weight: bold;
    }
    
    .dlist p {
    	margin-bottom: 0.625rem;
    }
    
    .sr-only {
    	border: 0;
    	clip: rect(0, 0, 0, 0);
    	height: 1px;
    	margin: -1px;
    	overflow: hidden;
    	padding: 0;
    	position: absolute;
    	width: 1px;
    }
    
    /* Layout */
    .main-content>.appendix,
    .main-content>.book,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    // The caller must not modify the returned list, but may safely append to it
    // and may rely on it not to be modified.
    func (mg *ModuleGraph) BuildList() []module.Version {
    	mg.buildListOnce.Do(func() {
    		mg.buildList = slices.Clip(mg.g.BuildList())
    	})
    	return mg.buildList
    }
    
    func (mg *ModuleGraph) findError() error {
    	errStack := mg.g.FindPath(func(m module.Version) bool {
    		_, err := mg.loadCache.Get(m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    }
    
    def TF_InvertOp : TF_Op<"Invert", [Pure, TF_Involution, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = [{
    Invert (flip) each bit of supported types; for example, type `uint8` value 01010101 becomes 10101010.
      }];
    
      let description = [{
    Flip each bit of supported types.  For example, type `int8` (decimal 2) binary 00000010 becomes (decimal -3) binary 11111101.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    		}
    	}
    	modRootContainingCWD := findModuleRoot(base.Cwd())
    	mainModules := &MainModuleSet{
    		versions:        slices.Clip(ms),
    		inGorootSrc:     map[module.Version]bool{},
    		pathPrefix:      map[module.Version]string{},
    		modRoot:         map[module.Version]string{},
    		modFiles:        map[module.Version]*modfile.File{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    		t0             time.Time
    		cancelKilled   = false
    		cancelSignaled = false
    	)
    	for {
    		cmd = exec.CommandContext(ctx, args[0], args[1:]...)
    		cmd.Dir = a.Package.Dir
    
    		env := slices.Clip(cfg.OrigEnv)
    		env = base.AppendPATH(env)
    		env = base.AppendPWD(env, cmd.Dir)
    		cmd.Env = env
    		if addToEnv != "" {
    			cmd.Env = append(cmd.Env, addToEnv)
    		}
    
    		cmd.Stdout = stdout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    			var to string
    			if cfg.BuildContext.GOOS == "windows" {
    				to = filepath.Join(`\\_\_`, toPath)
    			} else {
    				to = filepath.Join("/_", toPath)
    			}
    			flags = append(slices.Clip(flags), prefixMapFlag+"="+from+"="+to)
    		}
    	}
    
    	// Tell gcc to not insert truly random numbers into the build process
    	// this ensures LTO won't create random numbers for symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    //===----------------------------------------------------------------------===//
    // ClipByValue
    //===----------------------------------------------------------------------===//
    
    // -----
    
    // CHECK-LABEL: @clip
    func.func @clip(%arg0 : tensor<f32>, %arg1 : tensor<f32>, %arg2 : tensor<f32>) -> tensor<f32> {
      // CHECK: [[VAL:%.+]] = mhlo.clamp %arg1, %arg0, %arg2
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/BufferCaster.java

    import java.nio.Buffer;
    
    public class BufferCaster {
        /**
         * Without this cast, when the code compiled by Java 9+ is executed on Java 8, it will throw
         * java.lang.NoSuchMethodError: Method flip()Ljava/nio/ByteBuffer; does not exist in class java.nio.ByteBuffer
         */
        @SuppressWarnings("RedundantCast")
        public static <T extends Buffer> Buffer cast(T byteBuffer) {
            return (Buffer) byteBuffer;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. docs/tr/docs/deployment/index.md

    Bu, kodu sürekli olarak değiştirdiğiniz, hata alıp hata giderdiğiniz, geliştirme sunucusunu durdurup yeniden başlattığınız vb. **geliştirme** aşamalarının tam tersidir.
    
    ## Deployment Stratejileri
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:46:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top