Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 64 for splay_ (0.23 sec)

  1. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_details.jsp

                                                    value="<la:message key="labels.scheduledjob_button_start" />">
                                                <em class="fa fa-play-circle">
                                                <la:message key="labels.scheduledjob_button_start"/>
                                            </button>
                                        </c:if>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 12K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.td

                     "function specified will be used as main">
      ];
    }
    
    def UnfoldLargeSplatConstantPass : Pass<"unfold-large-splat-constant", "mlir::ModuleOp"> {
      let summary = "Unfold large splat constant tensors.";
      let constructor = "CreateUnfoldLargeSplatConstantPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf.cc

      // CHLO first.
      stablehlo::StablehloToHloTypeConverter hlo_converter;
      if (legalize_chlo) {
        chlo::populateChloToHloPatterns(context, &hlo_converter, &patterns);
      }
      // ConstantLike op is convenient to create splat constants, but is
      // canonicalized to plain HLO constant if statically shaped. Add the
      // canonicalization pattern to pattern list to enable multi-hop lowering.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/passes.h

    // for each ops.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateGetArithmeticCountPass();
    
    // Creates unfold large constant pass, which will replace large splat constant
    // tensors with fill op.
    std::unique_ptr<OperationPass<ModuleOp>> CreateUnfoldLargeSplatConstantPass();
    
    // Creates a pass that adds control dependencies to keep the relative execution
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

                rand_val = mlir::FloatAttr::get(element_type,
                                                std::rand() * 1.0 / RAND_MAX);
    
              } else {
                inst.emitWarning()
                    << "Skipping splat conversion for "
                    << "an unsupported attribute type " << element_type;
                continue;
              }
              auto new_attr = mlir::DenseElementsAttr::get(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    Please use https://scans.gradle.com/[build scans] for build analysis and comparison.
    
    ==== The Play plugins have been removed
    
    The deprecated Play plugin has been removed.
    An external replacement, the link:https://gradle.github.io/playframework[Play Framework plugin], is available from the plugin portal.
    
    ==== Method `AbstractCompile.compile()` method has been removed
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  7. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

        private static final String JAVA_EXECUTABLE_PATTERN_STR = "java(?:\\.exe)?";
        private static final String GRADLE_MAIN_CLASS_PATTERN_STR = "(org\\.gradle\\.[a-zA-Z]+)";
        private static final String PLAY_SERVER_PATTERN_STR = "(play\\.core\\.server\\.NettyServer)";
        private static final String JAVA_PROCESS_STACK_TRACES_MONITOR_PATTERN_STR = "(JavaProcessStackTracesMonitor\\.java)";
        private static ExecutionMode executionMode;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. src/crypto/aes/asm_ppc64x.s

    	BLT	loop128
    	ADD	$32, OUTDEC, OUTDEC
    	BEQ	l192
    	ADD	$32, OUTDEC, OUTDEC
    	JMP	l256
    
    loop128:
    	// Key schedule (Round 1 to 8)
    	VPERM	IN0, IN0, MASK, KEY              // vperm 3,1,1,5         Rotate-n-splat
    	VSLDOI	$12, ZERO, IN0, TMP              // vsldoi 6,0,1,12
    	STXVD2X	IN0, (R0+OUTENC)
    	STXVD2X	IN0, (R0+OUTDEC)
    	VCIPHERLAST	KEY, RCON, KEY           // vcipherlast 3,3,4
    	ADD	$16, OUTENC, OUTENC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. docs/config/README.md

    ```
    
    #### Obtain help for each key
    
    ```
    ~ mc admin config set myminio/ <key>
    ```
    
    e.g: `mc admin config set myminio/ etcd` returns available `etcd` config args
    
    ```
    ~ mc admin config set play/ etcd
    KEY:
    etcd  federate multiple clusters for IAM and Bucket DNS
    
    ARGS:
    endpoints*       (csv)       comma separated list of etcd endpoints e.g. "http://localhost:2379"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

        }
    
        public static void tryClose(@Nullable ClassLoader classLoader) {
            CompositeStoppable.stoppable(classLoader).stop();
        }
    
        // Used by the Gradle Play Framework Plugin. See:
        // https://github.com/gradle/playframework/blob/master/src/main/java/org/gradle/playframework/tools/internal/run/PlayWorkerServer.java#L72
        public static void disableUrlConnectionCaching() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top