Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 166 for pirates (0.33 sec)

  1. tensorflow/compiler/mlir/lite/README.md

    size and high performance (among the core value proposition of
    TensorFlow Lite models).
    - The Export pass writes out TensorFlow Lite FlatBuffer format. This pass
    operates on MLIR TensorFlow Lite dialect and is simple/direct translation.
    
    See
    https://github.com/tensorflow/tensorflow/blob/master/tensorflow/compiler/mlir/lite/tf_tfl_passes.cc
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 29 11:30:32 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/api/IsolatedAction.java

     * as any other object serialized into the Configuration Cache.</p>
     *
     * @param <T> The type of object the action operates on.
     * @since 8.8
     */
    @HasImplicitReceiver
    @Incubating
    public interface IsolatedAction<T> extends Serializable {
        /**
         * Performs this action against the given object.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:15:52 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

    };
    
    }  // namespace
    
    void CreateTFStandardPipeline(OpPassManager &pm,
                                  const StandardPipelineOptions &options) {
      OpPassManager &func_pm = pm.nest<func::FuncOp>();
    
      // First operates on the executor dialect:
      // - remove dead islands.
      // - fuse islands as much as possible.
      // - materialize the eventual "pass-through" ops by inlining their content.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    // and Next. Advance is called to try and advance an event and
    // add completed events to the ordering. Next is used to pick
    // off events in the ordering.
    type ordering struct {
    	gStates     map[GoID]*gState
    	pStates     map[ProcID]*pState // TODO: The keys are dense, so this can be a slice.
    	mStates     map[ThreadID]*mState
    	activeTasks map[TaskID]taskState
    	gcSeq       uint64
    	gcState     gcState
    	initialGen  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/lib/queries.libsonnet

          cpuUsage:
            self.query(
              'Container ({{pod}})',
              |||
                sum by (pod) (
                  irate(
                    container_cpu_usage_seconds_total{%(containerLabels)s}
                  [$__rate_interval])
                )
              |||
            ),
    
          memUsage:
            self.query(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/dsl/DependencyResultSpec.java

        }
    
        @Override
        public boolean isSatisfiedBy(DependencyResult candidate) {
            //The matching is very simple at the moment but it should solve majority of cases.
            //It operates using String#contains and it tests either requested or selected module.
            if (candidate instanceof ResolvedDependencyResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 05 20:58:39 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_targets.cc

      target.addLegalDialect<shape::ShapeDialect>();
      target.addLegalOp<func::CallOp>();
    
      // These ops are legalized in LegalizeTFCommunication after this and that pass
      // only operates on MHLO control flow ops.
      target.addLegalOp<TF::_XlaHostComputeMlirOp, TF::XlaSendToHostOp,
                        TF::XlaRecvFromHostOp>();
    
      return target;
    }
    
    }  // namespace mhlo
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 17:44:14 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. docs/pt/docs/alternatives.md

    Ele é projetado para ter funções que recebem dois parâmetros, uma "requisição" e uma "resposta". Então você "lê" as partes da requisição, e "escreve" partes para a resposta. Devido ao seu design, não é possível declarar parâmetros de requisição e corpos com _type hints_ Python padrão como parâmetros de funções.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_outside.txt

    #
    # First, ensure that we really are in module mode, and that we really don't have
    # a go.mod file.
    go env GOMOD
    stdout 'NUL|/dev/null'
    
    
    # 'go list' without arguments implicitly operates on the current directory,
    # which is not in a module.
    ! go list
    stderr '^go: go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    go list -m
    stdout '^command-line-arguments$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. src/crypto/internal/bigmod/nat_arm64.s

    TEXT ·addMulVVW2048(SB), $0-32
    	MOVD	$32, R0
    	JMP		addMulVVWx(SB)
    
    TEXT addMulVVWx(SB), NOFRAME|NOSPLIT, $0
    	MOVD	z+0(FP), R1
    	MOVD	x+8(FP), R2
    	MOVD	y+16(FP), R3
    	MOVD	$0, R4
    
    // The main loop of this code operates on a block of 4 words every iteration
    // performing [R4:R12:R11:R10:R9] = R4 + R3 * [R8:R7:R6:R5] + [R12:R11:R10:R9]
    // where R4 is carried from the previous iteration, R8:R7:R6:R5 hold the next
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top