Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 946 for vecotr (0.45 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      const ShapedType &padding_ty = padding_attr.getType();
      if (padding_ty.getRank() != 2 || padding_ty.getDimSize(1) != 2)
        return op.emitOpError()
               << "expects padding to be a matrix with minor dimension 2";
    
      if (lhs_dilation_attr.getType().getRank() != 1)
        return op.emitOpError() << "expects lhs_dilation to be a vecotr";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. docs/en/docs/img/logo-margin/logo-teal-vector.svg

    logo-teal-vector.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/vector.go

    // license that can be found in the LICENSE file.
    
    package s390x
    
    import (
    	"cmd/internal/obj"
    )
    
    // This file contains utility functions for use when
    // assembling vector instructions.
    
    // vop returns the opcode, element size and condition
    // setting for the given (possibly extended) mnemonic.
    func vop(as obj.As) (opcode, es, cs uint32) {
    	switch as {
    	default:
    		return 0, 0, 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 09 14:45:09 UTC 2019
    - 19.3K bytes
    - Viewed (0)
  4. docs/en/docs/img/logo-teal-vector.svg

    logo-teal-vector.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      %strides = "tf.Const"() {value = dense<[3, 1, 1]> : tensor<3xi32>} : () -> tensor<3xi32>
      // expected-error@+1 {{'tf.XlaConvV2' op expects lhs_dilation to be a vecotr}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  6. src/crypto/internal/hpke/hpke_test.go

    	vectorsJSON, err := os.ReadFile("testdata/rfc9180-vectors.json")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	var vectors []struct {
    		Name        string
    		Setup       string
    		Encryptions string
    	}
    	if err := json.Unmarshal(vectorsJSON, &vectors); err != nil {
    		t.Fatal(err)
    	}
    
    	for _, vector := range vectors {
    		t.Run(vector.Name, func(t *testing.T) {
    			setup := parseVectorSetup(vector.Setup)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/crypto/internal/hpke/testdata/rfc9180-vectors.json

    Roland Shoemaker <******@****.***> 1715710616 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. src/crypto/ed25519/ed25519vectors_test.go

    func TestEd25519Vectors(t *testing.T) {
    	jsonVectors := downloadEd25519Vectors(t)
    	var vectors []struct {
    		A, R, S, M string
    		Flags      []string
    	}
    	if err := json.Unmarshal(jsonVectors, &vectors); err != nil {
    		t.Fatal(err)
    	}
    	for i, v := range vectors {
    		expectedToVerify := true
    		for _, f := range v.Flags {
    			switch f {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 25 14:52:51 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.h

      // Given the required_consts, it will fill the 3 output vectors with
      // their respective data.
      // Expressions: Output XLA expressions as required by the compiled kernel.
      // Tensors: Vector of tensors that back the TensorValue inputs
      // Inputs: Vector of inputs that are backed by tensors.
      mlir::LogicalResult PrepareKernelInputs(
          const llvm::SmallDenseSet<int>& required_consts,
          std::vector<tensorflow::XlaExpression>& expressions,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/kernels/xla_ops.h

    class XlaLocalLaunchBase : public AsyncOpKernel {
     public:
      XlaLocalLaunchBase(OpKernelConstruction* ctx,
                         const std::vector<int>& constants,
                         const std::vector<int>& resources,
                         const NameAttrList& function, bool has_ref_vars);
      XlaLocalLaunchBase(const XlaLocalLaunchBase&) = delete;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 23:44:26 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top