Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for biglen (0.15 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    }
    
    // Checks if the given convolution op is depthwise.
    bool IsDepthwiseConvolution(stablehlo::ConvolutionOp op) {
      // `feature_group_count` controls how the input channel dimension is
      // split.
      // A value bigger than one signals depthwise convolution behavior.
      return op.getFeatureGroupCount() > 1;
    }
    
    // Returns kernel output feature dimension of TFLite convolutions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        require_use_buffer_offset_ = true;
        return std::nullopt;
      }
      if (flatbuffer_limit_exceeded) {
        LOG(ERROR) << "Model structure size is bigger than 2gb";
        return std::nullopt;
      }
      tflite::UpdateOpVersion(builder_.GetBufferPointer());
      tflite::UpdateMinimumRuntimeVersionForModel(builder_.GetBufferPointer());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    bestbuy
    
    // bet : 2015-05-07 Identity Digital Limited
    bet
    
    // bharti : 2014-01-09 Bharti Enterprises (Holding) Private Limited
    bharti
    
    // bible : 2014-06-19 American Bible Society
    bible
    
    // bid : 2013-12-19 dot Bid Limited
    bid
    
    // bike : 2013-08-27 Binky Moon, LLC
    bike
    
    // bing : 2014-12-18 Microsoft Corporation
    bing
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    // It returns a *Package describing the package found in that directory.
    // loadImport does not set tool flags and should only be used by
    // this package, as part of a bigger load operation.
    // The returned PackageError, if any, describes why parent is not allowed
    // to import the named package, with the error referring to importPos.
    // The PackageError can only be non-nil when parent is not nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    			expectedDeletions:       1,
    			expectedFailed:          1,
    			expectedCondition:       batch.JobFailed,
    			expectedConditionReason: batch.JobReasonDeadlineExceeded,
    		},
    		"activeDeadlineSeconds bigger than single pod execution": {
    			parallelism:             1,
    			completions:             2,
    			activeDeadlineSeconds:   10,
    			startTime:               15,
    			backoffLimit:            6,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    	}
    
    	ls := &oneConnListener{conn}
    	go Serve(ls, HandlerFunc(func(rw ResponseWriter, req *Request) {
    		defer close(done)
    		if bufLen := readBufLen(); bufLen < len(body)/2 {
    			t.Errorf("on request, read buffer length is %d; expected about 100 KB", bufLen)
    		}
    		rw.WriteHeader(200)
    		rw.(Flusher).Flush()
    		if g, e := readBufLen(), 0; g != e {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    // really pointers (back into the stack).
    // In practice, this means that we make the fast path run through
    // entersyscall doing no-split things, and the slow path has to use systemstack
    // to run bigger things on the system stack.
    //
    // reentersyscall is the entry point used by cgo callbacks, where explicitly
    // saved SP and PC are restored. This is needed when exitsyscall will be called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    		}
    		// Check that the orig and extra slices were not modified.
    		if a0.Len() != len(test.orig) {
    			t.Errorf("Append #%d: a0.Len: have %d, want %d", i, a0.Len(), origLen)
    		}
    		if len(test.orig) != origLen {
    			t.Errorf("Append #%d origLen: have %v, want %v", i, len(test.orig), origLen)
    		}
    		if len(test.extra) != extraLen {
    			t.Errorf("Append #%d extraLen: have %v, want %v", i, len(test.extra), extraLen)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top