Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 83 for pselect (0.19 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_TCresVTEtIsSameAsOp<0, 1>>]> {
      let summary = "Select operator";
    
      let description = [{
        Select values of 'x' if the corresponding value of 'condition' is true or
        the value of 'y' if false. There are valid condition input sizes:
    
        1. Either the same shape (in which case the select is elementwise), or
        2. condition must be Rank 1 and match over the first dimension.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "description": "The ConfigMap to select from"
            },
            "prefix": {
              "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
              "type": "string"
            },
            "secretRef": {
              "$ref": "#/definitions/io.k8s.api.core.v1.SecretEnvSource",
              "description": "The Secret to select from"
            }
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/ops.mlir

    }
    
    // -----
    
    // test select
    // CHECK-LABEL: testSelect
    func.func @testSelect(%cond : tensor<?xi1>, %arg0 : tensor<?xi32>, %arg1 : tensor<?xi32>) -> tensor<?xi32> {
      %0 = "tfl.select"(%cond, %arg0, %arg1): (tensor<?xi1>,tensor<?xi32>,tensor<?xi32>) -> tensor<?xi32>
      func.return %0 : tensor<?xi32>
    }
    
    // -----
    
    // test select with multi-dim inputs
    // CHECK-LABEL: testSelectMultiDim
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        std::string failed_custom_ops_summary =
            GetOpsSummary(failed_custom_ops_, /*summary_title=*/"Custom");
        std::string err;
        if (!failed_flex_ops_.empty())
          err +=
              "\nSome ops are not supported by the native TFLite runtime, you "
              "can "
              "enable TF kernels fallback using TF Select. See instructions: "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteWasm.go

    		c := auxIntToInt64(v_1.AuxInt)
    		if !(uint64(c) >= 64) {
    			break
    		}
    		v.reset(OpWasmI64Const)
    		v.AuxInt = int64ToAuxInt(0)
    		return true
    	}
    	// match: (Lsh64x64 x y)
    	// result: (Select (I64Shl x y) (I64Const [0]) (I64LtU y (I64Const [64])))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpWasmSelect)
    		v0 := b.NewValue0(v.Pos, OpWasmI64Shl, typ.Int64)
    		v0.AddArg2(x, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          SymbolTable::lookupSymbolIn(module, op.getSelect()));
      if (!select_func) {
        return op.emitOpError() << "has no select function specified";
      }
      auto select_func_type = select_func.getFunctionType();
      if (select_func_type.getNumInputs() != 2) {
        return op.emitOpError()
               << "expects select function to take 2 parameters, but has "
               << select_func_type.getNumInputs() << " parameter(s)";
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    policy/control/telemetry - so testing/staging of new settings and versions can be performed by a different role than the prod version. The intended users of this repo are users running Istio in production who want to select, tune and understand each binary that gets deployed, and select which combination to use. Note: each component can be installed in parallel with an existing Istio 1.0 or 1.1 installation in `istio-system`. The new components will not interfere with existing apps, but can interoperate,...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    //
    // Here is an appropriate place to note that despite the syntactical
    // similarity to the switch statement, the case statements in a select are
    // evaluated in a pseudorandom order if there are multiple channels ready to
    // read from when the select is evaluated.  In other words, case statements
    // are evaluated in random order, and you can not assume that the case
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			t.Error(err)
    			return
    		}
    		waitListCh <- l
    	}(rev + 1)
    
    	select {
    	case <-time.After(500 * time.Millisecond):
    	case l := <-waitListCh:
    		t.Fatalf("expected waiting, but get %#v", l)
    	}
    
    	if _, err := registry.Create(ctx, barPod, rest.ValidateAllObjectFunc, &metav1.CreateOptions{}); err != nil {
    		t.Fatal(err)
    	}
    
    	select {
    	case <-time.After(wait.ForeverTestTimeout):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    	/* Vector bit permute */
    	{as: AVBPERMQ, a1: C_VREG, a2: C_VREG, a6: C_VREG, type_: 82, size: 4}, /* vector bit permute, vx-form */
    
    	/* Vector select */
    	{as: AVSEL, a1: C_VREG, a2: C_VREG, a3: C_VREG, a6: C_VREG, type_: 83, size: 4}, /* vector select, va-form */
    
    	/* Vector splat */
    	{as: AVSPLTB, a1: C_S16CON, a2: C_VREG, a6: C_VREG, type_: 82, size: 4},
    	{as: AVSPLTISB, a1: C_S16CON, a6: C_VREG, type_: 82, size: 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top