Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,177 for Invert (0.29 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    //
    // Input: TF Saved Model or TF MLIR files.
    // Output: StableHLO MLIR or TFLite Flatbuffer.
    //
    // Usage:
    // 1) convert the input model to StableHLO MLIR
    // odml_to_stablehlo /path/to/model -o=model.mlir
    // 2) convert the input model to TFLite Flatbuffer
    // odml_to_stablehlo /path/to/model -o=model.tflite --export-type=tflite
    //
    // TODO(pulkitb): Add more options.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway.go

    					verifiedCertificateReferences.Insert(rn)
    					if s.GetTls().GetMode() == networking.ServerTLSSettings_MUTUAL {
    						verifiedCertificateReferences.Insert(rn + credentials.SdsCaSuffix)
    					}
    				} else if ps.ReferenceAllowed(gvk.Secret, rn, proxy.VerifiedIdentity.Namespace) {
    					// Explicitly allowed by some policy
    					verifiedCertificateReferences.Insert(rn)
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

      for (auto v : ddn.lhs_batch_dimensions()) {
        lhs_remove_idx.insert(v);
      }
      for (auto v : ddn.lhs_contracting_dimensions()) {
        lhs_remove_idx.insert(v);
      }
      for (auto v : ddn.rhs_batch_dimensions()) {
        rhs_remove_idx.insert(v);
      }
      for (auto v : ddn.rhs_contracting_dimensions()) {
        rhs_remove_idx.insert(v);
      }
    
      // Gather shapes for output.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/parser.go

    		// We only want to record exported variables.
    		return nil
    	}
    	return v
    }
    
    // Conversion = "convert" "(" Type "," ConstValue ")" .
    func (p *parser) parseConversion(pkg *types.Package) (val constant.Value, typ types.Type) {
    	p.expectKeyword("convert")
    	p.expect('(')
    	typ = p.parseType(pkg)
    	p.expect(',')
    	val, _ = p.parseConstValue(pkg)
    	p.expect(')')
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

      supported_ops->insert(
          OperationName(mlir::TF::IfRegionOp::getOperationName(), context));
      supported_ops->insert(
          OperationName(mlir::TF::InplaceAddOp::getOperationName(), context));
      supported_ops->insert(
          OperationName(mlir::TF::WhileRegionOp::getOperationName(), context));
      supported_ops->insert(
          OperationName(mlir::TF::XlaCallModuleOp::getOperationName(), context));
      supported_ops->insert(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/compose-uniform-quantized-type.mlir

        %8 = stablehlo.convert %7 : (tensor<1x4x2xi8>) -> tensor<1x4x2xf32>
        %9 = stablehlo.convert %2 : (tensor<2x3xi8>) -> tensor<2x3xf32>
        %10 = stablehlo.dot_general %8, %9, contracting_dims = [2] x [0] : (tensor<1x4x2xf32>, tensor<2x3xf32>) -> tensor<1x4x3xf32>
        %11 = stablehlo.convert %3 : (tensor<1x1x3xi32>) -> tensor<1x1x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 37K bytes
    - Viewed (0)
  7. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

                    throw new CrawlingAccessException("[" + e.status() + "] Failed to insert " + id, e);
                }
                throw new EsAccessException("[" + e.status() + "] Failed to insert " + id, e);
            } catch (final Exception e) {
                throw new EsAccessException("Failed to insert " + id, e);
            }
        }
    
        protected <T> void insertAll(final List<T> list, final OpType opType) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Apr 04 09:58:36 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. pkg/apis/apps/v1beta2/conversion_test.go

    				PodManagementPolicy: v1beta2.PodManagementPolicyType("bar"),
    			},
    		},
    	}
    
    	for k, tc := range testcases {
    		// apps -> v1beta2
    		internal1 := &v1beta2.StatefulSetSpec{}
    		if err := legacyscheme.Scheme.Convert(tc.stsSpec1, internal1, nil); err != nil {
    			t.Errorf("%q - %q: unexpected error: %v", k, "from extensions to v1beta2", err)
    		}
    
    		if !apiequality.Semantic.DeepEqual(internal1, tc.stsSepc2) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DefaultCommandLineActionFactoryTest.groovy

        def "delegates to each action factory to configure the command-line parser and create the action"() {
            def rawAction = Mock(Action<? super ExecutionListener>)
    
            when:
            def commandLineExecution = factory.convert(["--some-option"])
            commandLineExecution.execute(executionListener)
    
            then:
            1 * actionFactory1.configureCommandLineParser(!null) >> {
                CommandLineParser parser -> parser.option("some-option")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

        std::for_each(std::lower_bound(tensor.operations.begin(),
                                       tensor.operations.end(), remat.insert),
                      tensor.operations.end(),
                      [&](int& iop) { iop += num_inserted; });
      }
      operations_.insert(operations_.begin() + remat.insert, num_inserted, {});
    
      // Copy all tensors dependencies of the old region to the new region.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top