Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 946 for vecotr (0.15 sec)

  1. tensorflow/c/experimental/ops/gen/model/op_spec.h

      const string& summary() const { return summary_; }
      const string& description() const { return description_; }
      const std::vector<ArgSpec>& Inputs() const { return input_args_; }
      const std::vector<ArgSpec>& Outputs() const { return output_args_; }
      const std::vector<AttrSpec>& Attributes() const { return argument_attrs_; }
    
     private:
      explicit OpSpec(const OpDef& op_def, const ApiDef& api_def);
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/functional_grad.cc

    #include <iostream>
    #include <vector>
    
    #include "tensorflow/cc/framework/grad_op_registry.h"
    #include "tensorflow/cc/framework/gradients.h"
    #include "tensorflow/cc/ops/functional_ops.h"
    
    namespace tensorflow {
    namespace ops {
    namespace {
    
    Status PartitionedCallGrad(const Scope& scope, const Operation& op,
                               const std::vector<Output>& grad_inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 20:09:06 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.h

        const tpu::TPUCompileMetadataProto& metadata, bool use_tuple_args,
        XlaShapeLayoutHelpers::ShapeDeterminationFns shape_determination_funcs,
        const std::vector<tensorflow::TensorShape>& arg_shapes,
        std::vector<tpu::ShardingAndIndex>* arg_core_mapping,
        std::vector<std::vector<xla::Shape>>* per_core_arg_shapes,
        xla::CompileOnlyClient* client,
        XlaCompiler::CompilationResult* compilation_result);
    
    }  // namespace v1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:08:57 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.cc

        // Input tensors
        const std::vector<std::pair<string, Tensor>>& input_pairs,
        // Output tensors
        const std::vector<string>& output_tensor_names, TF_Tensor** c_outputs,
        // Target nodes
        const std::vector<string>& target_oper_names, TF_Buffer* run_metadata,
        TF_Status* status) {
      const int noutputs = output_tensor_names.size();
      std::vector<Tensor> outputs(noutputs);
      Status result;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

    // will be cleared before populating them.
    Status GetAndLockVariablesAndBuildXlaCompilerArguments(
        const OpKernelContext& ctx, const std::vector<const Tensor*>& inputs,
        const std::vector<int>& constant_indices,
        const std::vector<int>& variable_indices,
        std::vector<VariableInfo>* variables,
        std::vector<XlaCompiler::Argument>* args) {
      variables->clear();
      args->clear();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/math/stubs_s390x.s

    TEXT ·archLog10(SB), NOSPLIT, $0
    	MOVD ·log10vectorfacility+0x00(SB), R1
    	BR   (R1)
    
    TEXT ·log10TrampolineSetup(SB), NOSPLIT, $0
    	MOVB   ·hasVX(SB), R1
    	CMPBEQ R1, $1, vectorimpl                 // vectorfacility = 1, vector supported
    	MOVD   $·log10vectorfacility+0x00(SB), R1
    	MOVD   $·log10(SB), R2
    	MOVD   R2, 0(R1)
    	BR     ·log10(SB)
    
    vectorimpl:
    	MOVD $·log10vectorfacility+0x00(SB), R1
    	MOVD $·log10Asm(SB), R2
    	MOVD R2, 0(R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/fingerprinting_utils_test.cc

      if (!read_metadata.ok()) {
        reader.Close();
        TF_ASSERT_OK(read_metadata.status());
      }
      ChunkMetadata chunk_metadata = read_metadata.value();
    
      std::vector<ChunkInfo> chunks_info = std::vector<ChunkInfo>(
          chunk_metadata.chunks().begin(), chunk_metadata.chunks().end());
    
      FieldIndex field_one_field_tag;
      field_one_field_tag.set_field(1);
      FieldIndex repeated_field_field_tag;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx_test.cc

      std::unique_ptr<tfr::TFRDecomposeContext> test_ctx_;
    };
    
    std::vector<NodeAndType> NodesSequenceOf(const FunctionDef& graph) {
      std::vector<NodeAndType> nodes;
      for (auto& node : graph.node_def()) {
        nodes.push_back({node.op(), node.attr().at("T").type()});
      }
      return nodes;
    }
    
    TEST_F(TFRDecomposeContextTest, FLOAT_1_ins) {
      std::vector<NodeDefBuilder::NodeOut> src_list;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/test_utils.h

    // Converts a tensorflow::DatatypeSet to std::vector<DataType>.
    // This is useful for tests using GTest's ::testing::ValuesIn, since
    // DataTypeSet doesn't fullfill all the constraints of an STL-like iterable.
    std::vector<DataType> DataTypeSetToVector(DataTypeSet set);
    
    // Returns a vector of shapes intended to be "interesting" test cases.
    // Currently, this returns scalar, 1D vector, 2D matrix, and a 4D tensor shapes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/python/graphdef_to_tfl_flatbuffer.cc

      GraphImportConfig specs;
      mlir::quant::QuantizationSpecs quant_specs;
    
      // Parse input arrays.
      std::vector<std::string> node_names;
      std::vector<std::string> node_dtypes;
      std::vector<std::optional<std::vector<int>>> node_shapes;
      std::vector<std::optional<double>> node_mins;
      std::vector<std::optional<double>> node_maxs;
    
      // Populate quantization specs.
      TF_RETURN_IF_ERROR(internal::PopulateQuantizationSpecs(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top