Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 753 for inputs_ (0.15 sec)

  1. tensorflow/c/eager/unified_api_testutil.cc

                                 absl::Span<AbstractTensorHandle* const> inputs,
                                 std::vector<AbstractTensorHandle*>* params) {
      tracing::TracingTensorHandle* handle = nullptr;
      for (auto input : inputs) {
        PartialTensorShape shape;
        TF_RETURN_IF_ERROR(input->Shape(&shape));
        TF_RETURN_IF_ERROR(dyn_cast<tracing::TracingContext>(ctx)->AddParameter(
            input->DataType(), shape, &handle));
        params->emplace_back(handle);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 13:57:45 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/modelRules/modelDsl/groovy/build.gradle

        void people(ModelMap<Person> people) {
        }
    }
    
    apply plugin: PersonRules
    
    // tag::configure-rule[]
    // tag::create-rule[]
    // tag::rule-inputs[]
    // tag::create-rule-no-config[]
    // tag::managed-type-nested-config-rule[]
    model {
    // end::create-rule[]
    // end::rule-inputs[]
    // end::create-rule-no-config[]
    // end::managed-type-nested-config-rule[]
        person {
            lastName = "Smith"
        }
    // end::configure-rule[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. tensorflow/c/eager/gradient_checker_test.cc

                       absl::Span<AbstractTensorHandle* const> inputs,
                       absl::Span<AbstractTensorHandle*> outputs) {
      return ops::MatMul(ctx, inputs[0], inputs[1], &outputs[0],
                         /*transpose_a=*/false,
                         /*transpose_b=*/false, "MatMul");
    }
    
    Status MulModel(AbstractContext* ctx,
                    absl::Span<AbstractTensorHandle* const> inputs,
                    absl::Span<AbstractTensorHandle*> outputs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 10:03:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/unranked_tensor.mlir

    // CHECK-NEXT:      buffer: 2,
    // CHECK-NEXT:      name: "outputs",
    // CHECK-NEXT:      quantization: {
    // CHECK:           }
    // CHECK-NEXT:    } ],
    // CHECK-NEXT:    inputs: [ 0 ],
    // CHECK-NEXT:    outputs: [ 1 ],
    // CHECK-NEXT:    operators: [ {
    // CHECK-NEXT:      inputs: [ 0, 0 ],
    // CHECK-NEXT:      outputs: [ 1 ],
    // CHECK-NEXT:      builtin_options_type: AddOptions,
    // CHECK-NEXT:      builtin_options: {
    // CHECK:           }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/TransformedClosure.java

         */
        SourceLocation sourceLocation();
    
        /**
         * Marks this closure as a rule action, with the given inputs
         *
         * @param nestedRuleFactory Factory to use to create nested rules.
         */
        void makeRule(PotentialInputs inputs, @Nullable ClosureBackedRuleFactory nestedRuleFactory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/gradients/tape/tape_operation.cc

    }
    Status TapeOperation::AddInput(AbstractTensorHandle* input) {
      TF_RETURN_IF_ERROR(parent_op_->AddInput(input));
      forward_op_.inputs.push_back(input);
      return absl::OkStatus();
    }
    Status TapeOperation::AddInputList(
        absl::Span<AbstractTensorHandle* const> inputs) {
      TF_RETURN_IF_ERROR(parent_op_->AddInputList(inputs));
      for (auto input : inputs) {
        forward_op_.inputs.push_back(input);
      }
      return absl::OkStatus();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 06:16:45 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. cmd/object-api-input-checks.go

    Anis Eleuch <******@****.***> 1712232280 +0100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/README.adoc

    include::{samplesPath}/writing-tasks/tasks-with-dependency-resolution-result-inputs/tests/listResolvedArtifacts.out[]
    
    BUILD SUCCESSFUL in 1s
    1 actionable task: 1 executed
    ----
    =====
    =====
    [.sample-command]
    ----
    > ./gradlew -q graphResolvedComponents
    include::{samplesPath}/writing-tasks/tasks-with-dependency-resolution-result-inputs/tests/graphResolvedComponents.out[]
    
    BUILD SUCCESSFUL in 1s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/variable_info_util.h

    Status LockVariables(absl::Span<VariableInfo> variables)
        TF_EXCLUSIVE_LOCK_FUNCTION();
    
    // Returns a vector of VariableInfo instances for the resource variable inputs,
    // given that *all* inputs are in `inputs`. The input indices for the resource
    // variable inputs are in `variable_indices`.
    //
    // When using the VariableInfos generated by this version, all variables would
    // be writer-locked.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 14 21:57:02 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/signature_def_with_no_inputs.mlir

    // CHECK-NEXT:      name: "StatefulPartitionedCall:1",
    // CHECK-NEXT:      quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:      },
    // CHECK-NEXT:      has_rank: true
    // CHECK-NEXT:    } ],
    // CHECK-NEXT:    inputs: [  ],
    // CHECK-NEXT:    outputs: [ 0 ],
    // CHECK-NEXT:    operators: [  ],
    // CHECK-NEXT:    name: "main"
    // CHECK-NEXT:  } ],
    // CHECK-NEXT:  description: "MLIR Converted.",
    // CHECK-NEXT:  buffers: [ {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top