Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 457 for vecotr (0.18 sec)

  1. src/crypto/ecdh/ecdh_test.go

    			t.Errorf("expected GenerateKey to consume at most %v bytes, got %v", expected, got)
    		}
    	})
    }
    
    var vectors = map[ecdh.Curve]struct {
    	PrivateKey, PublicKey string
    	PeerPublicKey         string
    	SharedSecret          string
    }{
    	// NIST vectors from CAVS 14.1, ECC CDH Primitive (SP800-56A).
    	ecdh.P256(): {
    		PrivateKey: "7d7dc5f71eb29ddaf80d6214632eeae03d9058af1fb6d22ed80badb62bc1a534",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. tensorflow/cc/client/client_session.cc

      return options;
    }
    
    Status ClientSession::Run(const std::vector<Output>& fetch_outputs,
                              std::vector<Tensor>* outputs) const {
      return Run(FeedType{}, fetch_outputs, {}, outputs);
    }
    
    Status ClientSession::Run(const FeedType& inputs,
                              const std::vector<Output>& fetch_outputs,
                              std::vector<Tensor>* outputs) const {
      return Run(inputs, fetch_outputs, {}, outputs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:04:10 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasAVX512GFNI       bool // Advanced vector extension 512 Galois field New Instructions
    	HasAVX512VAES       bool // Advanced vector extension 512 Vector AES instructions
    	HasAVX512VBMI2      bool // Advanced vector extension 512 Vector Byte Manipulation Instructions 2
    	HasAVX512BITALG     bool // Advanced vector extension 512 Bit Algorithms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/collection/EnumerationIteratorTest.java

        @SuppressWarnings("unused")
        @Test
        public void testIterable() throws Exception {
            final Vector<String> vector = new Vector<String>();
            vector.add("a");
            vector.add("b");
            int count = 0;
            for (final String s : iterable(vector.elements())) {
                ++count;
            }
            assertThat(count, is(2));
        }
    
        /**
         * Test method for
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/dense_to_sparse.cc

                                 const std::vector<int>& block_size) {
      float sparsity = 0;
      std::vector<int> shape(2);
      shape[0] = type.getDimSize(0);
      shape[1] = type.getDimSize(1);
    
      std::vector<int> traversal_order = {};
      std::vector<TfLiteDimensionType> format = {};
      std::vector<int> b_size = {};
      std::vector<int> b_map = {};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.cc

      return absl::OkStatus();
    }
    
    Status ParseInputArrayInfo(
        const std::vector<string>& node_names,
        const std::vector<string>& node_dtypes,
        const std::vector<std::optional<std::vector<int>>>& node_shapes,
        GraphImportConfig::InputArrays* inputs) {
      std::vector<std::string> used_node_dtypes;
      if (node_dtypes.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_operator.h

        return std::vector<double>(vec.begin(), vec.end());
      }
    
      return std::vector<double>();
    }
    
    // Handles the case when the DenseElementsAttr doesn't exist, and when it
    // doesn't returns a vector of length `default_size` all with the same value
    // `default_value`.
    template <typename T>
    static inline std::vector<T> GetOptionalVector(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 21:00:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	PT_VR9                  = 83  // Vector register 9
    	PT_VR10                 = 84  // Vector register 10
    	PT_VR11                 = 85  // Vector register 11
    	PT_VR12                 = 86  // Vector register 12
    	PT_VR13                 = 87  // Vector register 13
    	PT_VR14                 = 88  // Vector register 14
    	PT_VR15                 = 89  // Vector register 15
    	PT_VR16                 = 90  // Vector register 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // indices
      // in the idx map, the value is a pair of offset and size
      absl::flat_hash_map<std::pair<std::vector<int32_t>, std::vector<int32_t>>,
                          std::vector<uint8_t>>
          custom_op_data_map_;
      absl::flat_hash_map<std::pair<std::vector<int32_t>, std::vector<int32_t>>,
                          std::pair<uint64_t, uint64_t>>
          custom_op_idx_map_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/gradients.cc

          const std::vector<bool>& reachable_nodes,
          const std::unordered_set<int>& output_nodes) const;
    
      const Scope& scope_;
      const ops::GradOpRegistry* registry_;
      const std::vector<Output>& outputs_;
      const std::vector<Output>& inputs_;
      const std::vector<Output>& grad_inputs_;
      std::vector<Output>* grad_outputs_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top