Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 84 for unsupportedOp (0.2 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

        Node* c = ops::UnaryOp("Relu", b, builder.opts().WithName("C"));
    
        // Builds a Symbolic gradient for Unsupported
        NodeBuilder d_builder("D", "SymbolicGradient",
                              builder.opts().op_registry());
        NameAttrList d_name_attr;
        d_name_attr.set_name("Unsupported");
        d_builder.Attr("f", d_name_attr);
        d_builder.Attr("Tin", {DT_FLOAT, DT_FLOAT});
        d_builder.Attr("Tout", {DT_FLOAT});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

            info.updated = true;
            info.data_type = assign.getValue().getType();
            continue;
          }
    
          used_in_unsupported_op = true;
          break;
        }
    
        // If the arg is used in an unsupported op, skip lifting it.
        if (used_in_unsupported_op) continue;
        (*result)[arg.getArgNumber()] = info;
      }
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSortedMap.java

          super.putAll(entries);
          return this;
        }
    
        /**
         * Throws an {@code UnsupportedOperationException}.
         *
         * @since 19.0
         * @deprecated Unsupported by ImmutableSortedMap.Builder.
         */
        @CanIgnoreReturnValue
        @Override
        @Deprecated
        @DoNotCall("Always throws UnsupportedOperationException")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener.go

    				}
    
    				// if we have a tcp fallthrough filter chain, this is no longer an HTTP listener - it
    				// is instead "unsupported" (auto detected), as we have a TCP and HTTP filter chain with
    				// inspection to route between them
    				listenerPortProtocol = protocol.Unsupported
    			}
    
    		case istionetworking.ListenerProtocolTCP:
    			opts = buildSidecarOutboundTCPListenerOpts(listenerOpts, virtualServices)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        std::transform(inputs.begin(), inputs.end(), outputs.begin(),
                       [](auto x) { return static_cast<int32_t>(x); });
        return outputs;
      } else {
        return errors::Unimplemented("Unsupported SparseIndexVector type");
      }
    }
    
    static StatusOr<Operation*> BuildSparseConstOp(
        const tflite::TensorT& tensor, const std::vector<uint8_t>& buffer,
        OpBuilder& builder, Location loc) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

          super.putAll(entries);
          return this;
        }
    
        /**
         * Throws an {@code UnsupportedOperationException}.
         *
         * @since 19.0
         * @deprecated Unsupported by ImmutableSortedMap.Builder.
         */
        @CanIgnoreReturnValue
        @Override
        @Deprecated
        @DoNotCall("Always throws UnsupportedOperationException")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    	default:
    		return false
    	}
    }
    
    // isUnsupportedVMASize reports whether the failure is caused by an unsupported
    // VMA for the race detector (for example, running the race detector on an
    // arm64 machine configured with 39-bit VMA).
    func isUnsupportedVMASize(w *work) bool {
    	unsupportedVMA := []byte("unsupported VMA range")
    	return strings.Contains(w.dt.name, ":race") && bytes.Contains(w.out.Bytes(), unsupportedVMA)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                            Severity.WARNING,
                            Version.V20,
                            prefix + "layout",
                            repository.getId(),
                            "uses the unsupported value 'legacy', artifact resolution might fail.",
                            repository);
                }
            }
        }
    
        private void validate20RawResources(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                            Severity.WARNING,
                            Version.V20,
                            prefix + "layout",
                            repository.getId(),
                            "uses the unsupported value 'legacy', artifact resolution might fail.",
                            repository);
                }
            }
        }
    
        private void validate20RawResources(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  10. pkg/controller/disruption/disruption_test.go

    	pod, _ := newPod(t, "naked")
    	add(t, dc.podStore, pod)
    	dc.sync(ctx, pdbName)
    
    	ps.VerifyDisruptionAllowed(t, pdbName, 0)
    	verifyEventEmitted(t, dc, "UnmanagedPods")
    }
    
    // Create a pod  with unsupported controller, and verify that a PDB with a percentage
    // specified won't allow a disruption.
    func TestUnsupportedControllerPod(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	dc, ps := newFakeDisruptionController(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top