Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for assignOps (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        }
    
        // Only iterate through ops directly in the body as op's embedded in child
        // regions should have been lifted out.
        auto assign_ops = front.getOps<TF::AssignVariableOp>();
        for (auto assign_variable_op : llvm::make_early_inc_range(assign_ops)) {
          Value resource = assign_variable_op.getResource();
          if (!IsWritten(resource)) continue;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

    // comment on the AndRecurrence class.
    //
    // The general algorithm that deals with cycles does two topological-order
    // iterations over the graph.  On the first iteration it assigns a symbolic
    // predicate to merge nodes with backedges.  On the second iteration it tries
    // to pattern match the predicates for the backedges of these merges and infer
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            assertTaskReady(finalizerDepDep)
            assertTaskReady(finalizerDep)
            assertTasksReadyAndNoMoreToStart(finalizerB, finalizerA)
            assertAllWorkComplete()
        }
    
        def "assigns finalizer and its dependents to highest ordinal group of the finalized tasks"() {
            given:
            Task finalizerDep = task("finalizerDep", type: Async)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// ordinals controls the numbering of replica indices in a StatefulSet. The
    	// default ordinals behavior assigns a "0" index to the first replica and
    	// increments the index by one for each additional replica requested. Using
    	// the ordinals field requires the StatefulSetStartOrdinal feature gate to be
    	// enabled, which is beta.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types.go

    	// ordinals controls the numbering of replica indices in a StatefulSet. The
    	// default ordinals behavior assigns a "0" index to the first replica and
    	// increments the index by one for each additional replica requested. Using
    	// the ordinals field requires the StatefulSetStartOrdinal feature gate to be
    	// enabled, which is beta.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    ensures that a client sees the actual (run-time) type an untyped value would
    have. It also permits type-checking of lhs shift operands "as if the shift
    were not present": when updateExprType visits an untyped lhs shift operand
    and assigns it it's final type, that type must be an integer type, and a
    constant lhs must be representable as an integer.
    
    When an expression gets its final type, either on the way out from rawExpr,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    ensures that a client sees the actual (run-time) type an untyped value would
    have. It also permits type-checking of lhs shift operands "as if the shift
    were not present": when updateExprType visits an untyped lhs shift operand
    and assigns it it's final type, that type must be an integer type, and a
    constant lhs must be representable as an integer.
    
    When an expression gets its final type, either on the way out from rawExpr,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // Boolean flags:
    //
    // class FlagDependentTest
    //     : public testing::TestWithParam<tuple<bool, bool> > {
    //   virtual void SetUp() {
    //     // Assigns external_flag_1 and external_flag_2 values from the tuple.
    //     tie(external_flag_1, external_flag_2) = GetParam();
    //   }
    // };
    //
    // TEST_P(FlagDependentTest, TestFeature1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // Boolean flags:
    //
    // class FlagDependentTest
    //     : public testing::TestWithParam<tuple<bool, bool> > {
    //   virtual void SetUp() {
    //     // Assigns external_flag_1 and external_flag_2 values from the tuple.
    //     tie(external_flag_1, external_flag_2) = GetParam();
    //   }
    // };
    //
    // TEST_P(FlagDependentTest, TestFeature1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    #### Options
    ```
    -max-iterations : Maximum shape inference iterations
    ```
    ### `-tf-simple-device-assignment`
    
    _Simple device assignment in TF dialect._
    
    Assigns the default device to all ops that have an empty (or
    nonexistent) device attribute.
    
    For example, if we have the code
    
    ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top