Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for outlier (0.13 sec)

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

              SmallVectorImpl<int64_t>& result_shape) {
            if (shape_x.size() < 2 || shape_y.size() < 2) {
              return false;
            }
    
            // Checks outer dimensions (i.e., the dimensions higher than 2D) are
            // broadcastable. If true, then get the broadcasted shape for outer
            // dimension.
            if (!OpTrait::util::getBroadcastedShape(
                    shape_x.drop_back(2), shape_y.drop_back(2), result_shape)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. pkg/test/framework/suitecontext.go

    	kvs := map[string]any{}
    	c.traces.Range(func(key, value any) bool {
    		kvs[key.(string)] = value
    		return true
    	})
    	outer := map[string]any{
    		fmt.Sprintf("suite/%s", c.settings.TestID): kvs,
    	}
    	d, _ := yaml.Marshal(outer)
    	return d
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compilation_cache.h

    };
    
    template <typename ExecutableType>
    std::optional<typename DeviceCompilationCache<ExecutableType>::Value>
    DeviceCompilationCache<ExecutableType>::Lookup(const Key& key) const {
      // The outer lock protects the existence of the cache entry. It does not
      // protect the contents of the cache entry.
      Entry* entry;
      {
        mutex_lock lock(compile_cache_mu_);
        // Find cache entry.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/AccessInCurrentReceiverOnlyTest.kt

            val errors = result.errors
            assertEquals(2, errors.size)
            assertTrue { errors.all { it.errorReason is ErrorReason.AccessOnCurrentReceiverOnlyViolation } }
        }
    
        @Test
        fun `access on an outer receiver is not allowed`() {
            val result = schema.resolve(
                """
                inner {
                    nested {
                        x = 1
                        y = 1
                        f()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_executor_to_functional.cc

        if (!island_op)
          return op.emitOpError()
                 << "is not supported for lifting out of tf_executor.graph, "
                    "expected tf_executor.island";
    
        // Move inner ops in island to before the outer graph.
        auto& island_body = island_op.GetBody().getOperations();
        parent_block->getOperations().splice(graph_position, island_body,
                                             island_body.begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/session/CrossBuildSessionState.java

     * <p>
     * Generally, one regular Gradle invocation is conceptually a session.
     * However, the GradleBuild task is currently implemented in such a way that it uses a discrete session.
     * Having the GradleBuild task reuse the outer session is complicated because it <a href="https://github.com/gradle/gradle/issues/4559">may use a different Gradle user home</a>.
     * <p>
     * This set of services is added as a parent of each build session scope.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/common/tfl_pass_config.h

      bool form_clusters = false;
      // If `unfold_batch_matmul` is true, the tf.BatchMatMul is unfolded to a set
      // of tfl.fully_connected ops.
      bool unfold_batch_matmul = true;
      // Whether to outline WhileOp at the end of the pipeline.
      bool outline_tf_while = false;
      // Whether to do shape inference.
      bool shape_inference = true;
      // Whether to do TFLite runtime verification.
      bool runtime_verification = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    // compilation device type.
    inline constexpr llvm::StringRef kCompileDeviceTypeAttr =
        "_xla_compile_device_type";
    // The attribute value speicifes the preferred outlined function name in
    // ClusterOutliningPass.
    inline constexpr llvm::StringRef kClusterOutlinedFunctionNameAttr =
        "_cluster_outlined_function_name";
    // Marks a node for replication. The attribute value indicates the replication
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/quantize_variables.cc

     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(QuantizeVariablesPass)
      explicit QuantizeVariablesPass() = default;
    
      void runOnOperation() override;
    
     private:
      // Outlines the regions of the WhileOp's cond and body and insert function
      // calls instead.
      void QuantizeVariable(OpBuilder &builder,
                            const std::vector<VarHandleOp> &var_handle_op);
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

      rewriter.create<func::ReturnOp>(output_mul_op.getLoc(),
                                      output_mul_op.getResult());
      rewriter.clearInsertionPoint();
      return new_func;
    }
    
    // Outlines non-approximate GELU into a stablehlo composite.
    //
    //    -> mul 1/sqrt(2) -> erf -> add 1 ->
    // in                                    mul
    //    ---------> mul 0.5 --------------->
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top