Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 707 for capture1 (0.24 sec)

  1. tensorflow/c/experimental/saved_model/core/revived_types/tensorhandle_convertible.h

    namespace tensorflow {
    
    // A common interface for objects that can be converted to a TensorHandle.
    // Examples of objects that implement this include Variables, Constants, Assets,
    // etc. This is used to convert captured objects into a ConcreteFunction's
    // captured TensorHandles:
    // https://github.com/tensorflow/tensorflow/blob/676a68963ea4b64fe479b9cede06aa8f5b290ab8/tensorflow/python/saved_model/load.py#L229-L240
    class TensorHandleConvertible {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batching_fallback.mlir

          batch_timeout_micros = 1000000,
          container = "container",
          shared_name = "shared_name",
          batching_queue = "batching_queue",
          enable_large_batch_splitting = false,
          Tin = [i32],
          Tcaptured = [i32],
          Tout = [i32]} : 1
    
      %result_2 = tfrt_fallback_async.batch_function device("/device:CPU:0") @matmul_cpu (%a2, %b) {
          num_batch_threads = 1,
          max_batch_size = 4,
          allowed_batch_sizes = [4],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 18 22:58:56 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/revived_types/tf_concrete_function.cc

        const FunctionDef* function_def,
        std::vector<ImmediateExecutionTensorHandle*> captures,
        FunctionMetadata metadata, ImmediateExecutionContext* ctx,
        std::unique_ptr<TFConcreteFunction>* out) {
      std::unique_ptr<FlatTensorFunction> func;
      TF_RETURN_IF_ERROR(FlatTensorFunction::Create(
          function_def, std::move(captures), ctx, &func));
    
      out->reset(new TFConcreteFunction(std::move(func), std::move(metadata)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 27 06:55:27 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/revived_types/tf_signature_def_function.cc

        const FunctionDef* function_def,
        std::vector<ImmediateExecutionTensorHandle*> captures,
        SignatureDefFunctionMetadata metadata, ImmediateExecutionContext* ctx,
        std::unique_ptr<TFSignatureDefFunction>* out) {
      std::unique_ptr<FlatTensorFunction> func;
      TF_RETURN_IF_ERROR(FlatTensorFunction::Create(
          function_def, std::move(captures), ctx, &func));
    
      out->reset(new TFSignatureDefFunction(std::move(func), std::move(metadata)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 27 07:01:57 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  5. subprojects/core/src/testFixtures/groovy/org/gradle/internal/classpath/InstrumentedClasses.groovy

            def capturedParams = originalClosure.class.declaredConstructors[0].parameters.drop(2)
            if (capturedParams.size() != 0) {
                // TODO support captured args in some way?
                throw new IllegalArgumentException("closures with captured arguments are not supported yet; please use the arguments and return value")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionMultipleCapturing.capturing.txt

    No captured values...
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Aug 08 17:26:39 UTC 2023
    - 19 bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/revived_types/tf_concrete_function_revival_state.h

      int node_id;
    
      // Pointer to the original functiondef. fdef_ is guaranteed to be
      // non-null.
      const FunctionDef* fdef;
    
      // TensorHandle captures for this funtion
      std::vector<ImmediateExecutionTensorHandle*> captures;
    
      // SavedConcreteFunction contains much of the metadata of the expected "types"
      // of the inputs and outputs of a function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 04:49:47 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionLocalClosureMutating.capturing.txt

    No captured values...
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Aug 08 17:26:39 UTC 2023
    - 19 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionContainingClassClosure.capturing.txt

    No captured values...
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Aug 08 17:26:39 UTC 2023
    - 19 bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/plugins/ApplyPluginBuildOperationIntegrationTest.groovy

    class ApplyPluginBuildOperationIntegrationTest extends AbstractIntegrationSpec {
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "captures plugin application events"() {
            given:
            file("build.gradle") << "apply plugin: 'java'"
    
            when:
            succeeds "build"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:36 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top