Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for output1 (2.93 sec)

  1. tensorflow/c/kernels_test.cc

                output->DebugString(100));
    }
    
    REGISTER_OP("AllocateOutputOp0").Output("output1: float");
    
    TEST_F(DeviceKernelOpTest, TestAllocateEmptyOutput) {
      auto my_compute_func = [](void* kernel, TF_OpKernelContext* ctx) {
        TF_Status* s = TF_NewStatus();
        // Allocate empty output
        int64_t dim = 0;
        TF_Tensor* output = TF_AllocateOutput(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/build-cache/overlapping-outputs-timeline.png

    overlapping-outputs-timeline.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 94.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/build-cache/overlapping-outputs-input-comparison.png

    overlapping-outputs-input-comparison.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 63.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          )
    
          inputs = {'input_vocabs': input_vocabs_placeholder}
          outputs = {
              'lookup': lookup_tensor,
              'output': output_tensor,
          }
    
          self._save_tf1_model(
              sess,
              output_path,
              signature_def_key,
              tags,
              inputs=inputs,
              outputs=outputs,
              init_op=lookup_ops.tables_initializer(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.h

    //  noutputs - number of elements in `outputs` array
    //  outputs - array of TF_Outputs that specify the outputs of the function.
    //            If `noutputs` is zero (the function returns no outputs), `outputs`
    //            can be null. `outputs` can contain the same tensor more than once.
    //  output_names - The names of the function's outputs. `output_names` array
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      for (const auto& op : subgraph.operators) {
        for (int32_t output : op->outputs) {
          if (!llvm::is_contained(input_indices, output)) {
            defining_op[output] = op.get();
          }
        }
      }
    
      std::vector<const tflite::OperatorT*> queue;
      for (int32_t output : output_indices) {
        if (auto& op = defining_op[output]) {
          queue.push_back(op);
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            output.contains("Appending output property name to build cache key: outputDirectory")
            output.contains("Appending output property name to build cache key: resultsFile")
            output.contains("Build cache key for MakeGreen")
        }
    
        def "honors @PathSensitive(NONE) on input artifact property for project artifact file when caching"() {
            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      // Check that we have two inputs and one output.
      ASSERT_THAT(op->inputs, SizeIs(2));
      ASSERT_THAT(op->outputs, SizeIs(1));
    
      // Check that all is quantized.
      auto output = subgraph->tensors[op->outputs[0]].get();
      auto input1 = subgraph->tensors[op->inputs[0]].get();
      auto input2 = subgraph->tensors[op->inputs[1]].get();
    
      EXPECT_THAT(output->type, Eq(TensorType_INT8));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

          [DeclareOpInterfaceMethods<SymbolUserOpInterface>]> {
      let summary = [{
    output = input; While (Cond(output)) { output = Body(output) }
      }];
    
      let description = [{
    output = input; While (Cond(output)) { output = Body(output) }
    
    input: A list of input tensors whose types are T.
    output: A list of output tensors whose types are T.
    cond: A function that takes 'input' and returns a tensor.  If the tensor is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_function_test.cc

                             const std::vector<IOSpec>& outputs) {
        const OpDef& signature = fdef.signature();
        ASSERT_EQ(outputs.size(), signature.output_arg_size());
        for (int i = 0; i < outputs.size(); ++i) {
          const OpDef::ArgDef& arg = signature.output_arg(i);
          const IOSpec& out = outputs[i];
          if (out.second != DT_INVALID) {
            ASSERT_EQ(arg.type(), out.second)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
Back to top