Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for counterparts (0.2 sec)

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

    limitations under the License.
    ==============================================================================*/
    
    // This transformation pass transforms functional control flow operations in the
    // TensorFlow dialect to their region based counterparts, i.e.,
    // tf.If -> tf.IfRegion and tf.While -> tf.WhileRegion
    
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

     * using the methods of {@link Provider} such as {@link Provider#get() get()}. The value can be modified by
     * using the methods {@link #set(Object)} and {@link #set(Provider)}, or their fluid API counterparts
     * {@link #value(Object)} and {@link #value(Provider)}.
     *
     * <p>
     * A property may represent a task output. Such a property carries information about the task producing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // their region based counterparts.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTFFunctionalControlFlowToRegions();
    std::unique_ptr<OperationPass<ModuleOp>> CreateTFFunctionalControlFlowToRegions(
        bool allow_passthrough_args);
    
    // Transforms region bases control flow operations in the TensorFlow dialect to
    // their functional counterparts.
    std::unique_ptr<OperationPass<ModuleOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                "psi",
                "token",
                "builder",
                "coneType",
                "analysisContext",
                "fe10Type",
    
                // These properties are made obsolete by their counterparts without `*IfNonLocal` (e.g. `classId`), which contain the same
                // values.
                "classIdIfNonLocal",
                "containingClassIdIfNonLocal",
                "callableIdIfNonLocal",
            )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Transforms functional control flow operations to their region-based counterparts";
    
      let description = [{
        This pass transforms functional control flow operations in the TensorFlow
        dialect to their region-based counterparts, i.e., `tf.If` is transformed to
        `tf.IfRegion` and `tf.While` is transformed to `tf.WhileRegion`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. src/reflect/abi.go

    //
    // They should be modified with care (no other reflect code
    // may be executing) and are generally only modified
    // when testing this package.
    //
    // They should never be set higher than their internal/abi
    // constant counterparts, because the system relies on a
    // structure that is at least large enough to hold the
    // registers the system supports.
    //
    // Currently they're set to zero because using the actual
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. src/runtime/stubs.go

    // don't support floating point).
    //
    // It should be modified with care and are generally only
    // modified when testing this package.
    //
    // It should never be set higher than its internal/abi
    // constant counterparts, because the system relies on a
    // structure that is at least large enough to hold the
    // registers the system supports.
    //
    // Protected by finlock.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

    limitations under the License.
    ==============================================================================*/
    
    // This transformation pass transforms region bases control flow operations in
    // the TensorFlow dialect to their functional counterparts, i.e.,
    // tf.IfRegion ->  tf.If and tf.WhileRegion -> tf.While
    
    #include <iterator>
    #include <memory>
    #include <optional>
    #include <string>
    
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SetVector.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    // using the configuration properly.
    func TestNew(t *testing.T) {
    	s, config, assert := newMaster(t)
    
    	// Verify many of the variables match their config counterparts
    	assert.Equal(s.legacyAPIGroupPrefixes, config.LegacyAPIGroupPrefixes)
    	assert.Equal(s.admissionControl, config.AdmissionControl)
    }
    
    // Verifies that AddGroupVersions works as expected.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

    import org.checkerframework.checker.nullness.qual.NonNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Static utility methods pertaining to {@link Set} instances. Also see this class's counterparts
     * {@link Lists}, {@link Maps} and {@link Queues}.
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#sets">{@code Sets}</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
Back to top