Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for minval (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        """
        in_placeholder = array_ops.placeholder(dtypes.float32, shape=input_shape)
    
        filters = random_ops.random_uniform(
            shape=filter_shape, minval=-1.0, maxval=1.0
        )
        if use_variable_for_filter:
          filters = variables.Variable(filters)
    
        output_tensor = nn_ops.conv2d(
            in_placeholder,
            filters,
            strides=[1, 1, 2, 1],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    The generated values are uniform integers in the range `[minval, maxval)`.
    The lower bound `minval` is included in the range, while the upper bound
    `maxval` is excluded.
    
    The random integers are slightly biased unless `maxval - minval` is an exact
    power of two.  The bias is small for values of `maxval - minval` significantly
    smaller than the range of the output (either `2^32` or `2^64`).
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Output shape =
          ops::RandomUniformInt(root.WithOpName("shape"), shape_shape,
                                ops::Const(root.WithOpName("minval"), 1),
                                ops::Const(root.WithOpName("maxval"), 20));
      Output reshape_input =
          ops::Placeholder(root.WithOpName("reshape_input"), DT_FLOAT,
                           ops::Placeholder::Shape(TensorShape({500, 500})));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/manual.css

    		padding-top: 0;
    		padding-bottom: 0;
    	}
    }
    
    @media screen and (min-width: 84.375rem) {
    	.ui-logos .ui-logo {
    		box-shadow: 0 6px 15px 1px rgba(0, 0, 0, 0.56);
    	}
    }
    
    /* User Manual Home */
    .technology-logos,
    .ui-logos {
    	display: flex;
    	flex-direction: row;
    	flex-wrap: wrap;
    	justify-content: space-around;
    }
    
    .technology-logo,
    .ui-logo {
    	flex: 0 1 auto;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		return utimensat(dirfd, path, nil, flags)
    	}
    	if len(ts) != 2 {
    		return EINVAL
    	}
    	return utimensat(dirfd, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), flags)
    }
    
    func Futimesat(dirfd int, path string, tv []Timeval) error {
    	if tv == nil {
    		return futimesat(dirfd, path, nil)
    	}
    	if len(tv) != 2 {
    		return EINVAL
    	}
    	return futimesat(dirfd, path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    			if tcpStats != nil {
    				return nil, errnoErr(EINVAL)
    			}
    			tcpStats = (*nwmTCPStatsEntry)(unsafe.Pointer(ptr))
    		case nwmIPStatsIdentifier:
    		case nwmIPGStatsIdentifier:
    		case nwmUDPStatsIdentifier:
    		case nwmICMPGStatsEntry:
    		case nwmICMPTStatsEntry:
    		default:
    			return nil, errnoErr(EINVAL)
    		}
    	}
    	if tcpStats == nil {
    		return nil, errnoErr(EINVAL)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. src/syscall/syscall_windows.go

    // s, with a terminating NUL added. If s contains a NUL byte at any
    // location, it returns (nil, [EINVAL]). Unpaired surrogates
    // are encoded using WTF-8.
    func UTF16FromString(s string) ([]uint16, error) {
    	if bytealg.IndexByteString(s, 0) != -1 {
    		return nil, EINVAL
    	}
    	// Valid UTF-8 characters between 1 and 3 bytes require one uint16.
    	// Valid UTF-8 characters of 4 bytes require two uint16.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    }
    
    func Pipe(p []Handle) (err error) {
    	if len(p) != 2 {
    		return syscall.EINVAL
    	}
    	var r, w Handle
    	e := CreatePipe(&r, &w, makeInheritSa(), 0)
    	if e != nil {
    		return e
    	}
    	p[0] = r
    	p[1] = w
    	return nil
    }
    
    func Utimes(path string, tv []Timeval) (err error) {
    	if len(tv) != 2 {
    		return syscall.EINVAL
    	}
    	pathp, e := UTF16PtrFromString(path)
    	if e != nil {
    		return e
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    With such a minimal configuration file, a project using _any_ external dependency or plugin would immediately start failing because it doesn't contain any checksum to verify.
    
    [[sec:verification-scope]]
    === Scope of the dependency verification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go

    	// WARNING: in.Version requires manual conversion: does not exist in peer-type
    	if err := Convert_apiextensions_CustomResourceDefinitionNames_To_v1_CustomResourceDefinitionNames(&in.Names, &out.Names, s); err != nil {
    		return err
    	}
    	out.Scope = ResourceScope(in.Scope)
    	// WARNING: in.Validation requires manual conversion: does not exist in peer-type
    	// WARNING: in.Subresources requires manual conversion: does not exist in peer-type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top