Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for returns_ (0.28 sec)

  1. tensorflow/c/experimental/saved_model/core/signature_def_function_metadata.cc

    const std::string& SignatureDefParam::name() const { return name_; }
    
    const TensorSpec& SignatureDefParam::spec() const { return spec_; }
    
    SignatureDefFunctionMetadata::SignatureDefFunctionMetadata(
        std::vector<SignatureDefParam> arguments,
        std::vector<SignatureDefParam> returns)
        : arguments_(std::move(arguments)), returns_(std::move(returns)) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 29 23:11:59 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/signature_def_function_metadata.h

                                   std::vector<SignatureDefParam> returns);
    
      const std::vector<SignatureDefParam>& arguments() const;
      const std::vector<SignatureDefParam>& returns() const;
    
     private:
      std::vector<SignatureDefParam> arguments_;
      std::vector<SignatureDefParam> returns_;
    };
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 29 23:11:59 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

      absl::flat_hash_map<Operation*, Node*> nodes_;
      llvm::DenseMap<BlockArgument, Node*> args_;
      // One single return operation can return multiple results, and each of them
      // will be converted to one node in the graph.
      typedef absl::InlinedVector<Node*, 4> NodeVector;
      absl::flat_hash_map<Operation*, NodeVector> returns_;
      const mlir::Dialect* tf_dialect_;
      const SymbolTable& symbol_table_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      absl::flat_hash_map<Operation*, Node*> nodes_;
      llvm::DenseMap<BlockArgument, Node*> args_;
      // One single return operation can return multiple results, and each of them
      // will be converted to one node in the graph.
      typedef absl::InlinedVector<Node*, 4> NodeVector;
      absl::flat_hash_map<Operation*, NodeVector> returns_;
      const mlir::Dialect* tf_dialect_;
      const SymbolTable& symbol_table_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/inline/inlheur/testdata/props/returns2.go

    func returnsFunc(x int) func(int) int {
    	if x < 0 {
    		G++
    	}
    	return adder
    }
    
    func returnsFunc2() func(int) int {
    	return func(x int) int {
    		return adder(x)
    	}
    }
    
    func returnsNonInlinableFunc() func(int) int {
    	return adderNoInline
    }
    
    func multiReturnsFunc() (int, func(int) int, int) {
    	return 42, func(x int) int { G++; return 1 }, -42
    }
    
    func adder(x int) int {
    	G += 1
    	return G
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/definiteJumps/return4.kt

    fun foo(a: Int): Int {
        a.let {
            <expr>if (it > 0) return@foo it else return -it</expr>
        }
        return 0
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 118 bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/conditionalJumps/return2.kt

    fun foo(a: Int): Int {
        val b: Int = 1
        <expr>when (a + b) {
            0 -> return 0
            1 -> consume(1)
            else -> consume(2)
        }
        </expr>
        return 1
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 199 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/definiteJumps/return3.txt

      hasEscapingJumps = true
      hasJumps = true
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = [
        return it,
        return@foo -it
      ]
      returnValueType = kotlin.Int
      valuedReturnExpressions = [
        return it,
        return@foo -it
      ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 355 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/definiteJumps/return4.txt

      hasEscapingJumps = true
      hasJumps = true
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = [
        return@foo it,
        return -it
      ]
      returnValueType = kotlin.Int
      valuedReturnExpressions = [
        return@foo it,
        return -it
      ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 355 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/conditionalJumps/return3.txt

        expression = if (a + b > 0) return 0
            else if (a - b < 0) consume(a - b)
            else consume(0)
        type = kotlin.Unit
      hasEscapingJumps = true
      hasJumps = true
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = [
        return 0
      ]
      returnValueType = kotlin.Int
      valuedReturnExpressions = [
        return 0
      ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 462 bytes
    - Viewed (0)
Back to top