Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 155 for Tresults (0.34 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Add the function return;
      std::vector<Value> results;
      Append(results, new_forward->getResults());
      Append(results, new_core_tpu->getResults());
      func_builder.create<func::ReturnOp>(loc, results);
    
      // Inline any StatefulPartitionCall Ops.
      auto result = Inliner(builder, symbol_table).InlineCallsInFunc(then_func);
      if (failed(result)) return result;
    
      builder.restoreInsertionPoint(insertion_point);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool.go

    						poolIdx, setIdx, poolReadQuorums[poolIdx]))
    			}
    			result.HealthyRead = result.HealthyRead && healthyRead
    		}
    	}
    
    	if opts.Maintenance {
    		result.Healthy = result.Healthy && drivesHealing == 0
    		result.HealthyRead = result.HealthyRead && drivesHealing == 0
    		result.HealingDrives = drivesHealing
    	}
    
    	return result
    }
    
    // PutObjectMetadata - replace or add tags to an existing object
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      for (Value result : return_value_from_host)
        parallel_execute_result_types.push_back(result.getType());
      for (Value result : return_value_from_device)
        parallel_execute_result_types.push_back(result.getType());
      return parallel_execute_result_types;
    }
    
    // Remap the device cluster results with parallel execute op results
    llvm::SmallVector<Value, 4> GetRemappedTpuClusterResults(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        results = qc.QuantizationResults()
        text_format.Parse(quantization_results_textpb, results)
    
        self.assertProtoEquals(
            expected_message_maybe_ascii=r"""
            results {
              quantizable_unit { name: "composite_dot_general_fn_1" }
              method { static_range_ptq {} }
            }
            """,
            message=results,
        )
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                    }
    
                    captureBuildOperationResult(context, results);
                    return results;
                }
    
                private void captureBuildOperationResult(BuildOperationContext context, ResolverResults results) {
                    results.getVisitedGraph().getResolutionFailure().ifPresent(context::failed);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/Futures.java

       * a POJO.
       *
       * @param input The future to transform
       * @param function A Function to transform the results of the provided future to the results of
       *     the returned future.
       * @param executor Executor to run the function in.
       * @return A future that holds result of the transformation.
       * @since 9.0 (in 2.0 as {@code compose})
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/Futures.java

       * a POJO.
       *
       * @param input The future to transform
       * @param function A Function to transform the results of the provided future to the results of
       *     the returned future.
       * @param executor Executor to run the function in.
       * @return A future that holds result of the transformation.
       * @since 9.0 (in 2.0 as {@code compose})
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // CHECK-SAME: topology = "topology"
    // CHECK:      %[[OP_B:[0-9]*]] = "tf.opB"(%[[CLUSTER]])
    // CHECK:      "tf.opD"(%[[OP_B]])
    
    
    // Test one replica cluster results in removing of TPUReplicatedInput and
    // TPUReplicatedOutput nodes and operands are forwarded to results.
    // CHECK-LABEL: func @one_replica
    // CHECK-SAME: (%[[ARG_0:[a-z0-9]*]]: tensor<i1>)
    func.func @one_replica(%arg0: tensor<i1>) -> tensor<i1> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. src/go/parser/parser.go

    	tparams, params := p.parseParameters(true)
    	if tparams != nil {
    		p.error(tparams.Pos(), "function type must have no type parameters")
    	}
    	results := p.parseResult()
    
    	return &ast.FuncType{Func: pos, Params: params, Results: results}
    }
    
    func (p *parser) parseMethodSpec() *ast.Field {
    	if p.trace {
    		defer un(trace(p, "MethodSpec"))
    	}
    
    	doc := p.leadComment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            } else if (result instanceof InternalTaskSkippedResult) {
                return new DefaultTaskSkippedResult(result.getStartTime(), result.getEndTime(), ((InternalTaskSkippedResult) result).getSkipMessage());
            } else if (result instanceof InternalTaskFailureResult) {
                return new DefaultTaskFailureResult(result.getStartTime(), result.getEndTime(), toFailures(result.getFailures()), toTaskExecutionDetails(result));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top