Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 105 for INS (0.03 sec)

  1. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.td

        initializes the TF EagerContext and returns an output chain.
    
        Example:
          %c1 = "tfd.init_eager_context"(%c0): (!tfrt.chain) -> !tfrt.chain
      }];
    
      let arguments = (ins TFRT_ChainType);
      let results = (outs TFRT_ChainType);
    }
    
    def DelegateKernelOp : RuntimeFallbackDialect_Op<"delegate_kernel"> {
      let summary = "delegate kernel operation";
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				}
    				this.get_container().html("<ul><li class='jstree-last jstree-leaf'><ins>&#160;</ins><a class='jstree-loading' href='#'><ins class='jstree-icon'>&#160;</ins>" + this._get_string("loading") + "</a></li></ul>");
    				this.data.core.li_height = this.get_container_ul().find("li.jstree-closed, li.jstree-leaf").eq(0).height() || 18;
    
    				this.get_container()
    					.delegate("li > ins", "click.jstree", $.proxy(function (event) {
    							var trgt = $(event.target);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/gpu_ops.td

      let description = [{
        Transfer a CPU tensor to device.
    
        Example:
          %device_tensor = gpurt.transfer_to_device %cpu_tensor
      }];
    
      let arguments = (ins TFTensorType);
      let results = (outs TFTensorType);
      let assemblyFormat = "operands attr-dict";
    }
    
    // TODO(b/260267885): We may add a device argument when we want to support
    // GPU MIG.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        The non-control operands of the fetch operation are returned outside of the
        graph and must match the return type of the graph.
      }];
    
      let arguments = (ins
        Variadic<AnyType>:$fetches
      );
    
      let builders = [
        OpBuilder<(ins),
        [{
          build($_builder, $_state, {});
        }]>
       ];
    
      let assemblyFormat = "($fetches^ `:` type($fetches))? attr-dict";
    
      let hasVerifier = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

        Await a tensor from a !mlrt.future.
    
        $future: A value of type !mlrt.future. The underlying value must be a tensorflow tensor.
    
        $result: a tensorflow tensor.
      }];
    
      let arguments = (ins
        MlrtFutureType:$future
      );
    
      let results = (outs
        TF_Tensor:$result
      );
    }
    
    // tf_mlrt.tf_promise takes a tensorflow Tensor. It is a fake op that is only
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/KtStaticModuleDependentsProvider.kt

        private val directDependentsByKtModule: Map<KtModule, Set<KtModule>> by lazy {
            // Direct dependencies should be computed lazily, because the built-ins module will be reachable via module dependencies. Getting
            // the built-ins module relies on the built-ins session, which may depend on services that are registered after
            // `KtStaticModuleDependentsProvider`.
            buildDependentsMap(modules) { it.allDirectDependencies() }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 18 21:14:36 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/net/hosts_test.go

    		for _, ent := range tt.ents {
    			testStaticHost(t, tt.name, ent)
    		}
    	}
    }
    
    func testStaticHost(t *testing.T, hostsPath string, ent staticHostEntry) {
    	ins := []string{ent.in, absDomainName(ent.in), strings.ToLower(ent.in), strings.ToUpper(ent.in)}
    	for _, in := range ins {
    		addrs, _ := lookupStaticHost(in)
    		if !reflect.DeepEqual(addrs, ent.out) {
    			t.Errorf("%s, lookupStaticHost(%s) = %v; want %v", hostsPath, in, addrs, ent.out)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/README.md

    for portability. The following code defines the semantics of `AddNOp`:
    
    ```python
    @Composite('AddNOp')
    def _my_op_c(ins):
      N = len(ins)
      if N == 1:
        return ins[0]
      sum = ins[0]
      for i in range(1, N):
        sum += ins[i]
      return sum
    ```
    
    Utilities have been built to compile the Python composition functions down to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  9. src/cmd/covdata/tool_test.go

    	if err := os.Mkdir(outdir, 0777); err != nil {
    		t.Fatalf("can't create outdir %s: %v", outdir, err)
    	}
    
    	// Merge the two dirs into a final result.
    	ins := fmt.Sprintf("-i=%s,%s", indir1, indir2)
    	out := fmt.Sprintf("-o=%s", outdir)
    	margs := []string{ins, out}
    	lines := runToolOp(t, s, "merge", margs)
    	if len(lines) != 0 {
    		t.Errorf("merge run produced %d lines of unexpected output", len(lines))
    		dumplines(lines)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td

      let printer = "$_printer << '[' << $_self << ']'";
    }
    
    def DimensionMetadataAttr : AttrDef<TFL_Dialect, "DimensionMetadata"> {
      let mnemonic = "dimension_metadata";
      let parameters = (ins
          TFL_DimensionTypeAttr:$format,
          "int32_t":$dense_size,
          I32ArrayParameter:$segments,
          I32ArrayParameter:$indices
      );
      let summary = "Dimension metadata.";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 20 00:05:24 UTC 2022
    - 6.4K bytes
    - Viewed (0)
Back to top