Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Processing (0.22 sec)

  1. tensorflow/c/c_api_function.cc

        TF_RETURN_WITH_CONTEXT_IF_ERROR(
            fn_body->graph.IsValidOutputTensor(node, idx),
            "Encountered while processing input ", i, " into function '", fn_name,
            "'");
        TF_RETURN_WITH_CONTEXT_IF_ERROR(ValidateNonRefOutput(node, idx),
                                        "Encountered while processing input ", i,
                                        " into function '", fn_name, "'");
    
        input_tensors->emplace_back(node, idx);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 13.6K bytes
    - Viewed (2)
  2. CITATION.cff

    that mutate that state. It maps the nodes of a dataflow graph across many machines in a cluster, and within a machine across multiple computational devices, including multicore CPUs, general purpose GPUs, and custom-designed ASICs known as Tensor Processing Units (TPUs). This architecture gives flexibility to the application developer, whereas in previous “parameter server” designs the management of shared state is built into the system, TensorFlow enables developers to experiment with novel optimizations...
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 06 15:26:23 GMT 2021
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_function_test.cc

      EXPECT_EQ(TF_OUT_OF_RANGE, TF_GetCode(s_));
      EXPECT_EQ(string("Node 'feed2' (type: 'Placeholder', num of outputs: 1) does "
                       "not have output 2\n\tEncountered while processing "
                       "input 1 into function 'MyFunc'"),
                string(TF_Message(s_)));
    }
    
    TEST_F(CApiFunctionTest, InvalidInputTensor_BadNodePtr) {
      /*
       *                  |  |
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 20 22:08:54 GMT 2023
    - 63.6K bytes
    - Viewed (6)
  4. tensorflow/c/eager/tape.h

                        absl::Span<const tensorflow::DataType> dtypes);
    
      // Temporarily push or pop transient state for this accumulator.
      //
      // Allows an accumulator which is currently processing an operation to
      // temporarily reset its state. Without pushing and popping, accumulators
      // ignore operations executed as a direct result of their own jvp
      // computations.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 02 12:40:29 GMT 2024
    - 47.2K bytes
    - Viewed (1)
  5. RELEASE.md

    *   Adds support for a new "distributed_epoch" processing mode. This processing
        mode distributes a dataset across all tf.data workers, instead of having
        each worker process the full dataset. See
        [the tf.data service docs](https://www.tensorflow.org/api_docs/python/tf/data/experimental/service#understand_processing_mode)
        to learn more.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top