Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 130 for const1 (0.16 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    	flagVariants := make(map[string]bool)
    
    	for _, lib := range ctxt.Library {
    
    		consts := d.ldr.Lookup(dwarf.ConstInfoPrefix+lib.Pkg, 0)
    		for _, unit := range lib.Units {
    			// We drop the constants into the first CU.
    			if consts != 0 {
    				unit.Consts = sym.LoaderSym(consts)
    				d.importInfoSymbol(consts)
    				consts = 0
    			}
    			ctxt.compUnits = append(ctxt.compUnits, unit)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (MUL(Q|L)const [-3] x) => (NEG(Q|L) (LEA(Q|L)2 <v.Type> x x))
    (MUL(Q|L)const [-1] x) => (NEG(Q|L) x)
    (MUL(Q|L)const [ 0] _) => (MOV(Q|L)const [0])
    (MUL(Q|L)const [ 1] x) => x
    (MUL(Q|L)const [ 3] x) => (LEA(Q|L)2 x x)
    (MUL(Q|L)const [ 5] x) => (LEA(Q|L)4 x x)
    (MUL(Q|L)const [ 7] x) => (LEA(Q|L)2 x (LEA(Q|L)2 <v.Type> x x))
    (MUL(Q|L)const [ 9] x) => (LEA(Q|L)8 x x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/math_grad.cc

    Status MatMulGradHelper(const Scope& scope, const bool is_batch,
                            const Output& x0, const bool adj_x0, const Output& x1,
                            const bool adj_x1, const DataType x_data_type,
                            const Output& y0, const bool adj_y0, const Output& y1,
                            const bool adj_y1, const DataType y_data_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

    #include "tensorflow/core/util/dump_graph.h"
    
    namespace tensorflow {
    
    const char* const kXlaCompiledKernelAttr = "_XlaCompiledKernel";
    const char* const kXlaNumConstantArgsAttr = "_XlaNumConstantArgs";
    const char* const kXlaNumResourceArgsAttr = "_XlaNumResourceArgs";
    const char* const kXlaHostTransferSequencerAttr =
        "_xla_host_transfer_sequencer";
    const char* const kXlaHasReferenceVarsAttr = "_XlaHasReferenceVars";
    
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

        const char* needle_expr, const char* haystack_expr,
        const wchar_t* needle, const wchar_t* haystack);
    GTEST_API_ AssertionResult IsSubstring(
        const char* needle_expr, const char* haystack_expr,
        const ::std::string& needle, const ::std::string& haystack);
    GTEST_API_ AssertionResult IsNotSubstring(
        const char* needle_expr, const char* haystack_expr,
        const ::std::string& needle, const ::std::string& haystack);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

      Predicate* start() const { return operands_[0]; }
      Predicate* step() const { return operands_[1]; }
      absl::Span<const string> frame() const { return frame_; }
    
      string ToString() const override {
        return absl::StrCat("{", start()->ToString(), ",&,", step()->ToString(),
                            "}<", absl::StrJoin(frame(), ";"), ">");
      }
    
      Kind kind() const override { return Kind::kAndRecurrence; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      // CHECK-NEXT: [[loop_counter:%.*]] = "tf.Const"
      %outputs_16 =  "tf.Const"() {device = "", value = dense<0> : tensor<i32>} : () -> tensor<i32>
      // CHECK-NEXT: [[max_iterations:%.*]] = "tf.Const"
      %outputs_18 =  "tf.Const"() {device = "", value = dense<16> : tensor<i32>} : () -> tensor<i32>
      %outputs_20 =  "tf.Const"() {device = "", value = dense<1> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    // TODO(krzysd) Handle function calls
    StatusOr<Operation*> ConvertOp(
        const tflite::OperatorT& op, const std::vector<Value>& vals_map,
        const std::vector<mlir::TensorType>& intermediate_types,
        Value optional_arg_marker,
        const std::vector<std::unique_ptr<tflite::OperatorCodeT>>& op_codes,
        const std::vector<std::string>& func_names,
        const std::vector<std::unique_ptr<tflite::TensorT>>& tensors, Location loc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      static bool FullMatch(const char* str, const RE& re);
      static bool PartialMatch(const char* str, const RE& re);
    
     private:
      void Init(const char* regex);
    
      // We use a const char* instead of an std::string, as Google Test used to be
      // used where std::string is not available.  TODO(******@****.***): change to
      // std::string.
      const char* pattern_;
      bool is_valid_;
    
    #if GTEST_USES_POSIX_RE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. tensorflow/c/kernels_test.cc

      delete_called = true;
      delete s;
    }
    
    namespace tensorflow {
    Status TF_TensorToTensor(const TF_Tensor* src, Tensor* dst);
    
    static std::unique_ptr<OpKernel> GetFakeKernel(const char* device_name,
                                                   const char* op_name,
                                                   const char* node_name,
                                                   Status* status) {
      NodeDef def;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
Back to top