Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for d_val (0.04 sec)

  1. src/crypto/internal/hpke/hpke.go

    	}
    	if err != nil {
    		return nil, nil, err
    	}
    	dhVal, err := privEph.ECDH(pubRecipient)
    	if err != nil {
    		return nil, nil, err
    	}
    	encPubEph := privEph.PublicKey().Bytes()
    
    	encPubRecip := pubRecipient.Bytes()
    	kemContext := append(encPubEph, encPubRecip...)
    
    	return dh.ExtractAndExpand(dhVal, kemContext), encPubEph, nil
    }
    
    type Sender struct {
    	aead cipher.AEAD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

            Args:
              use_variable: If True, creates a variable for weight.
            """
            super().__init__()
            w_val = np.random.randn(128, 32).astype('f4')
            if use_variable:
              self.w = variables.Variable(w_val)
            else:
              self.w = w_val
    
          @def_function.function(
              input_signature=[
                  tensor_spec.TensorSpec(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      if (shape_x.size() == shape_y.size()) {
        llvm::SmallVector<int64_t, 4> out_shape(shape_x.size());
        for (int i = 0; i < shape_x.size(); i++) {
          auto x_val = shape_x[i];
          auto y_val = shape_y[i];
          out_shape[i] = std::max(x_val, y_val);
        }
        return tensorflow::GetTypeFromTFTensorShape(out_shape, element_type);
      }
    
      auto shape_large = shape_x.size() > shape_y.size() ? shape_x : shape_y;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top