Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 89 for GETs (0.11 sec)

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

            return false;
          });
    }
    
    // Return the half_range value that is used by DequantizeOp. half_range is used
    // to offset the quantized representation before it gets scaled. In the case
    // of negative quantize types, this offset is half the type's range.
    static DenseElementsAttr DequantizeHalfRange(OpBuilder *builder, Value input) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    		// Only use the VERSION file if it is non-empty.
    		if b != "" {
    			return b
    		}
    	}
    
    	// The $GOROOT/VERSION.cache file is a cache to avoid invoking
    	// git every time we run this command. Unlike VERSION, it gets
    	// deleted by the clean command.
    	path = pathf("%s/VERSION.cache", goroot)
    	if isfile(path) {
    		return chomp(readfile(path))
    	}
    
    	// Show a nicer error message if this isn't a Git repo.
    	if !isGitRepo() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    were not present": when updateExprType visits an untyped lhs shift operand
    and assigns it it's final type, that type must be an integer type, and a
    constant lhs must be representable as an integer.
    
    When an expression gets its final type, either on the way out from rawExpr,
    on the way down in updateExprType, or at the end of the type checker run,
    the type (and constant value, if any) is recorded via Info.Types, if present.
    */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      if (handle_dtype.getSubtypes().empty()) {
        return UnrankedTensorType::get(element_type);
      }
      return PrependLeadingDimIfRanked(-1, handle_dtype.getSubtypes()[0], rewriter);
    }
    
    // Gets the index of tensorlist arguments which size might get changed by the
    // function.
    llvm::SmallSet<int, 4> GetResizedTensorListIndexes(
        func::FuncOp func, const llvm::SmallSet<int, 4> &tensor_list_args) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    ----
    > gradle assembleDependentsOperatorsPassingStaticLibrary --max-workers=1
    include::{snippetsPath}/native-binaries/cunit/tests/assembleDependentComponents.out[]
    ----
    
    In the output above, the targeted binary gets assembled as well as the test suite binary that depends on it.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    						return "No support for static linking found (lacks libc.a?), skip cgo static linking test.", true
    					}
    				}
    			}
    
    			// Doing a static link with boringcrypto gets
    			// a C linker warning on Linux.
    			// in function `bio_ip_and_port_to_socket_and_addr':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. cmd/xl-storage_test.go

    	testCases := []struct {
    		name string
    		err  error
    	}{
    		// Validates input argument cannot be empty.
    		{
    			"",
    			errInvalidArgument,
    		},
    		// Validates if the directory does not exist and
    		// gets automatically created.
    		{
    			tmpDirName,
    			nil,
    		},
    		// Validates if the disk exists as file and returns error
    		// not a directory.
    		{
    			tmpFileName,
    			errDiskNotDir,
    		},
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    	// recording our stack trace into mp.profStack, and then allocating a
    	// r.Stack of the right size. However, mp.profStack is also used for
    	// allocation profiling, so it could get overwritten if the slice allocation
    	// gets profiled. So instead we record the stack trace into a temporary
    	// pcbuf which is usually given to us by our caller. When it's not, we have
    	// to allocate one here. This will only happen for goroutines that were in a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/type.go

    	startResults int // index of the start of the results section
    
    	resultsTuple *Type // struct-like type representing multi-value results
    
    	// Argwid is the total width of the function receiver, params, and results.
    	// It gets calculated via a temporary TFUNCARGS type.
    	// Note that TFUNC's Width is Widthptr.
    	Argwid int64
    }
    
    func (ft *Func) recvs() []*Field         { return ft.allParams[:ft.startParams] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    func getAPIError(code APIErrorCode) APIError {
    	if apiErr, ok := errorCodes[code]; ok {
    		return apiErr
    	}
    	return errorCodes.ToAPIErr(ErrInternalError)
    }
    
    // getErrorResponse gets in standard error and resource value and
    // provides a encodable populated response values
    func getAPIErrorResponse(ctx context.Context, err APIError, resource, requestID, hostID string) APIErrorResponse {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
Back to top