Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for Sizes (0.04 sec)

  1. tensorflow/c/kernels/ops/bitcast.cc

      if (input_type_size == 0 || output_type_size == 0) {
        std::ostringstream err;
        err << "Cannot bitcast type " << input_type << " to " << output_type
            << " because one of the type sizes is zero";
        TF_SetStatus(status, TF_INVALID_ARGUMENT, err.str().c_str());
        return;
      }
    
      TF_SetStatus(status, TF_OK, "");
      if (input_type_size < output_type_size) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 07:51:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. cmd/routers.go

    	// prefix.
    	setBrowserRedirectMiddleware,
    	// Adds 'crossdomain.xml' policy middleware to serve legacy flash clients.
    	setCrossDomainPolicyMiddleware,
    	// Limits all body and header sizes to a maximum fixed limit
    	setRequestLimitMiddleware,
    	// Validate all the incoming requests.
    	setRequestValidityMiddleware,
    	// Add upload forwarding middleware for site replication
    	setUploadForwardingMiddleware,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/crypto/dsa/dsa.go

    func GenerateParameters(params *Parameters, rand io.Reader, sizes ParameterSizes) error {
    	// This function doesn't follow FIPS 186-3 exactly in that it doesn't
    	// use a verification seed to generate the primes. The verification
    	// seed doesn't appear to be exported or used by other code and
    	// omitting it makes the code cleaner.
    
    	var L, N int
    	switch sizes {
    	case L1024N160:
    		L = 1024
    		N = 160
    	case L2048N224:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. src/internal/fuzz/encoding_test.go

    			if got != want {
    				t.Errorf("unexpected marshaled value\ngot:\n%s\nwant:\n%s", got, want)
    			}
    		})
    	}
    }
    
    // BenchmarkMarshalCorpusFile measures the time it takes to serialize byte
    // slices of various sizes to a corpus file. The slice contains a repeating
    // sequence of bytes 0-255 to mix escaped and non-escaped characters.
    func BenchmarkMarshalCorpusFile(b *testing.B) {
    	buf := make([]byte, 1024*1024)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 00:20:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. mockwebserver/src/main/kotlin/mockwebserver3/RecordedRequest.kt

    import okio.Buffer
    
    /** An HTTP request that came into the mock web server. */
    @ExperimentalOkHttpApi
    class RecordedRequest(
      val requestLine: String,
      /** All headers. */
      val headers: Headers,
      /**
       * The sizes of the chunks of this request's body, or an empty list if the request's body
       * was empty or unchunked.
       */
      val chunkSizes: List<Int>,
      /** The total size of the body of this POST request (before truncation).*/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/cycles5.go

    type T13 /* ERROR "invalid recursive type T13" */ [len(b13)]int
    var b13 T13
    
    func g1() [unsafe.Sizeof(g1)]int
    func g2() [unsafe.Sizeof(x2)]int
    var x2 = g2
    
    // verify that we get the correct sizes for the functions above
    // (note: assert is statically evaluated in go/types test mode)
    func init() {
    	assert(unsafe.Sizeof(g1) == 8)
    	assert(unsafe.Sizeof(x2) == 8)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.h

    // allowed to have one mismatching dimension. Masking one of the dimensions is
    // useful for ops like Concat that requires all ranked inputs to have the same
    // rank and match dimension sizes for all but one of the dimensions.
    LogicalResult VerifyTypesCompatibility(Operation::operand_type_range types,
                                           bool mask_one_dim, Operation *op);
    
    }  // namespace TF
    }  // namespace mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo_translate.cc

        "input-arg-shapes",
        llvm::cl::desc(
            "A string representation of input argument shapes for 'main' "
            "entry-point, separating tensors with ':', dimension with ',', and "
            "using '?' for unknown sizes. For example, 'input-arg-shapes=1,2::1,?' "
            "expresses argument shapes [1,2], [] and [1,?]"),
        llvm::cl::Optional, llvm::cl::init(""));
    
    // NOLINTNEXTLINE
    opt<std::string> exported_model_signatures(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.cc

              device, getResults()[index], resource_handle_id_map, next_id));
        }
      }
      return resource_vec;
    }
    
    LogicalResult _TfrtGetResourceOp::verify() {
      _TfrtGetResourceOp get_resource_op = *this;
      // The sizes of indices, shared_name and container must be equal.
      int32_t indices_size =
          get_resource_op->getAttrOfType<mlir::ArrayAttr>("indices").size();
      int32_t shared_name_size =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	Pkg          *types.Package // type information about the package
    	TypesInfo    *types.Info    // type information about the syntax trees
    	TypesSizes   types.Sizes    // function for computing sizes of types
    	TypeErrors   []types.Error  // type errors (only if Analyzer.RunDespiteErrors)
    
    	// Report reports a Diagnostic, a finding about a specific location
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top