Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for feed_size (0.18 sec)

  1. tensorflow/compiler/aot/codegen.cc

      const int num_args = ps.parameters_size();
      // feed_size() + variable_size() is the maximum number of args as an
      // implementation may not create an argument for an unused variable.
      if (config.feed_size() + config.variable_size() < num_args) {
        return errors::InvalidArgument(
            "mismatch between feed_size(", config.feed_size(), ")+variable_size(",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  2. src/crypto/ed25519/ed25519.go

    	PrivateKeySize = 64
    	// SignatureSize is the size, in bytes, of signatures generated and verified by this package.
    	SignatureSize = 64
    	// SeedSize is the size, in bytes, of private key seeds. These are the private key representations used by RFC 8032.
    	SeedSize = 32
    )
    
    // PublicKey is the type of Ed25519 public keys.
    type PublicKey []byte
    
    // Any methods implemented on PublicKey might need to also be implemented on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

    // bytes that represent host endianness values.
    // The read_size parameter is present to allow reading both float16 and float32
    // without a case split.
    template <typename T>
    llvm::SmallVector<mlir::APInt> ReadAsHostEndian(ArrayRef<uint8_t> bytes) {
      llvm::SmallVector<mlir::APInt> ret;
      size_t read_size = sizeof(T);
      int bytes_len = bytes.size();
      assert(bytes_len % read_size == 0);
    
      int elem_count = bytes_len / read_size;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/crypto/ed25519/ed25519_test.go

    	if boring.Enabled {
    		t.Skip("skipping allocations test with BoringCrypto")
    	}
    	testenv.SkipIfOptimizationOff(t)
    
    	if allocs := testing.AllocsPerRun(100, func() {
    		seed := make([]byte, SeedSize)
    		message := []byte("Hello, world!")
    		priv := NewKeyFromSeed(seed)
    		pub := priv.Public().(PublicKey)
    		signature := Sign(priv, message)
    		if !Verify(pub, message, signature) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/crypto/x509/pkcs8.go

    		if _, err := asn1.Unmarshal(privKey.PrivateKey, &curvePrivateKey); err != nil {
    			return nil, fmt.Errorf("x509: invalid Ed25519 private key: %v", err)
    		}
    		if l := len(curvePrivateKey); l != ed25519.SeedSize {
    			return nil, fmt.Errorf("x509: invalid Ed25519 private key length: %d", l)
    		}
    		return ed25519.NewKeyFromSeed(curvePrivateKey), nil
    
    	case privKey.Algo.Algorithm.Equal(oidPublicKeyX25519):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/stack_ops_decomposition.mlir

      // CHECK-NEXT: "tf.AssignVariableOp"(%[[BUFFER]], %[[UPDATE]]) : (tensor<!tf_type.resource<tensor<10xf32>>>, tensor<10xf32>) -> ()
      // CHECK-NEXT: %[[CONST1:.*]] = "tf.Const"() <{value = dense<1> : tensor<1xi32>}> : () -> tensor<1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

      bool signature_change;
      func::FuncOp decomposed_callee;
      llvm::SmallDenseMap<int64_t, int64_t> buffer_arg_to_size_arg;
      // Each element is a tuple of (buffer_return_index, size_return_index,
      // fixed_size).
      llvm::SmallVector<std::tuple<int64_t, int64_t, bool>, 8>
          buffer_ret_to_size_ret;
    };
    
    LogicalResult DecomposeTensorListOpsInternal(
        Block*, ModuleOp, llvm::SmallDenseMap<Value, SizeInfo>*,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go

    	Geniv       [64]int8
    	Blocksize   uint32
    	Maxauthsize uint32
    	Ivsize      uint32
    }
    
    type CryptoReportComp struct {
    	Type [64]int8
    }
    
    type CryptoReportRNG struct {
    	Type     [64]int8
    	Seedsize uint32
    }
    
    type CryptoReportAKCipher struct {
    	Type [64]int8
    }
    
    type CryptoReportKPP struct {
    	Type [64]int8
    }
    
    type CryptoReportAcomp struct {
    	Type [64]int8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go

    	Geniv       [64]int8
    	Blocksize   uint32
    	Maxauthsize uint32
    	Ivsize      uint32
    }
    
    type CryptoReportComp struct {
    	Type [64]int8
    }
    
    type CryptoReportRNG struct {
    	Type     [64]int8
    	Seedsize uint32
    }
    
    type CryptoReportAKCipher struct {
    	Type [64]int8
    }
    
    type CryptoReportKPP struct {
    	Type [64]int8
    }
    
    type CryptoReportAcomp struct {
    	Type [64]int8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go

    	Blocksize   uint32
    	Maxauthsize uint32
    	Ivsize      uint32
    }
    
    type CryptoReportComp struct {
    	Type [64]uint8
    }
    
    type CryptoReportRNG struct {
    	Type     [64]uint8
    	Seedsize uint32
    }
    
    type CryptoReportAKCipher struct {
    	Type [64]uint8
    }
    
    type CryptoReportKPP struct {
    	Type [64]uint8
    }
    
    type CryptoReportAcomp struct {
    	Type [64]uint8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top