Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 946 for vecotr (0.35 sec)

  1. 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)
  2. tensorflow/cc/gradients/nn_grad.cc

                      std::vector<Output>* grad_outputs) {
      grad_outputs->push_back(Mul(scope, op.input(0), grad_inputs[0]));
      return scope.status();
    }
    REGISTER_GRADIENT_OP("L2Loss", L2LossGrad);
    
    Status BiasAddGradHelper(const Scope& scope, const Operation& op,
                             const std::vector<Output>& grad_inputs,
                             std::vector<Output>* grad_outputs) {
      string data_format;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 23:34:33 UTC 2022
    - 24.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lift_variables_test_pass.h

        *deviceMgrPtr = nullptr;
        return OkStatus();
      }
    
      Status Run(const std::vector<std::pair<std::string, Tensor>>& inputs,
                 const std::vector<std::string>& output_names,
                 const std::vector<std::string>& target_nodes,
                 std::vector<Tensor>* outputs) override {
        tensorflow::RunMetadata run_metadata;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 21 15:49:06 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    		[6]*argField{ap_VecSpReg_10_10_6_9, ap_Reg_11_15, ap_Reg_16_20}},
    	{LXVRBX, 0xfc0007fe00000000, 0x7c00001a00000000, 0x0, // Load VSX Vector Rightmost Byte Indexed X-form (lxvrbx XT,RA,RB)
    		[6]*argField{ap_VecSReg_31_31_6_10, ap_Reg_11_15, ap_Reg_16_20}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  5. 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)
  6. 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 (2)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/utils/fake_session.h

      ::tensorflow::Status ListDevices(
          std::vector<tensorflow::DeviceAttributes>* response) override;
    
      ::tensorflow::Status LocalDeviceManager(
          const tensorflow::DeviceMgr** deviceMgrPtr) override;
    
      ::tensorflow::Status Run(
          const std::vector<std::pair<std::string, ::tensorflow::Tensor>>& inputs,
          const std::vector<std::string>& output_names,
          const std::vector<std::string>& target_nodes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/encoding/gob/example_encdec_test.go

    	"encoding/gob"
    	"fmt"
    	"log"
    )
    
    // The Vector type has unexported fields, which the package cannot access.
    // We therefore write a BinaryMarshal/BinaryUnmarshal method pair to allow us
    // to send and receive the type with the gob package. These interfaces are
    // defined in the "encoding" package.
    // We could equivalently use the locally defined GobEncode/GobDecoder
    // interfaces.
    type Vector struct {
    	x, y, z int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_mlir.h

        bool use_tuple_args, XlaCompiler::CompilationResult* compilation_result,
        std::vector<std::unique_ptr<mlir::Pass>>& custom_legalization_passes,
        const std::vector<TensorShape>& arg_shapes,
        std::vector<tpu::ShardingAndIndex>* arg_core_mapping,
        std::vector<std::vector<xla::Shape>>* per_core_arg_shapes);
    
    // Compiles a serialized MLIR module into XLA HLO, generates all accompanying
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top