Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,027 for dilate (0.26 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        Type dilated_output_type = output_type.clone(dilated_shape);
        Value constant_values = op.getPaddingValue();
    
        return rewriter.create<TFL::DilateOp>(dilate.getLoc(), dilated_output_type,
                                              input, dilate, constant_values);
      }
    };
    
    // Rewrites quantized stablehlo.slice to tfl.slice or tfl.strided_slice.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK{LITERAL}: dense<[1, 2]> : tensor<2xi32>
    // CHECK: %[[DILATE:.+]] = "tfl.dilate"(%[[ARG0]], %[[INTERIOR]], %[[ARG1]]) : (tensor<2x3x!quant.uniform<i8:f32, 2.000000e+00:-1>>, tensor<2xi32>, tensor<!quant.uniform<i8:f32, 2.000000e+00:-1>>) -> tensor<3x7x!quant.uniform<i8:f32, 2.000000e+00:-1>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema.fbs

      STABLEHLO_SORT = 199, // WARNING: No runtime support
      STABLEHLO_WHILE = 200, // WARNING: No runtime support
      STABLEHLO_GATHER = 201,
      STABLEHLO_TRANSPOSE = 202, // WARNING: No runtime support
      DILATE = 203,
      STABLEHLO_RNG_BIT_GENERATOR = 204,
      REDUCE_WINDOW = 205 (deprecated),
      STABLEHLO_COMPOSITE = 206, // WARNING: No runtime support
    }
    // LINT.ThenChange(nnapi_linter/linter.proto)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. src/compress/flate/deflate.go

    		level = 6
    		fallthrough
    	case 2 <= level && level <= 9:
    		d.compressionLevel = levels[level]
    		d.initDeflate()
    		d.fill = (*compressor).fillDeflate
    		d.step = (*compressor).deflate
    	default:
    		return fmt.Errorf("flate: invalid compression level %d: want value in range [-2, 9]", level)
    	}
    	return nil
    }
    
    func (d *compressor) reset(w io.Writer) {
    	d.w.reset(w)
    	d.sync = false
    	d.err = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. clause/delete.go

    package clause
    
    type Delete struct {
    	Modifier string
    }
    
    func (d Delete) Name() string {
    	return "DELETE"
    }
    
    func (d Delete) Build(builder Builder) {
    	builder.WriteString("DELETE")
    
    	if d.Modifier != "" {
    		builder.WriteByte(' ')
    		builder.WriteString(d.Modifier)
    	}
    }
    
    func (d Delete) MergeClause(clause *Clause) {
    	clause.Name = ""
    	clause.Expression = d
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 09 09:07:00 UTC 2020
    - 359 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go

    		span.AddEvent("About to delete object from database")
    		wasDeleted := true
    		userInfo, _ := request.UserFrom(ctx)
    		staticAdmissionAttrs := admission.NewAttributesRecord(nil, nil, scope.Kind, namespace, name, scope.Resource, scope.Subresource, admission.Delete, options, dryrun.IsDryRun(options.DryRun), userInfo)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:32 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. callbacks/delete.go

    				queryConds = append(queryConds, clause.IN{Column: column, Values: values})
    
    				if db.AddError(tx.Clauses(clause.Where{Exprs: queryConds}).Delete(modelValue).Error) != nil {
    					return
    				}
    			}
    		}
    
    	}
    }
    
    func Delete(config *Config) func(db *gorm.DB) {
    	supportReturning := utils.Contains(config.DeleteClauses, "RETURNING")
    
    	return func(db *gorm.DB) {
    		if db.Error != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Feb 25 02:48:23 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/tasks/Delete.java

    /**
     * <p>Deletes files or directories. Example:</p>
     * <pre class='autoTested'>
     * task makePretty(type: Delete) {
     *   delete 'uglyFolder', 'uglyFile'
     *   followSymlinks = true
     * }
     * </pre>
     *
     * Be default symlinks will not be followed when deleting files. To change this behavior call
     * {@link Delete#setFollowSymlinks(boolean)} with true. On systems that do not support symlinks,
     * this will have no effect.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/rest/delete.go

    		// 1. Update to set DeletionGracePeriodSeconds and DeletionTimestamp
    		// 2. Delete the object from storage.
    		// If the update succeeds, but the delete fails (network error, internal storage error, etc.),
    		// a resource was previously left in a state that was non-recoverable.  We
    		// check if the existing stored resource has a grace period as 0 and if so
    		// attempt to delete immediately in order to recover from this scenario.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 07 17:43:41 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/ops.mlir

    }
    
    // -----
    
    // CHECK-LABEL: testDilate
    func.func @testDilate(%arg0: tensor<3x4x5xf32>) -> tensor<5x7x9xf32> {
      // CHECK: "tfl.dilate"(%arg0, %cst, %cst_0)
      %cst = arith.constant dense<1> : tensor<3xi32>
      %cst_0 = arith.constant dense<-1.0> : tensor<f32>
      %0 = "tfl.dilate"(%arg0, %cst, %cst_0) : (tensor<3x4x5xf32>, tensor<3xi32>, tensor<f32>) -> tensor<5x7x9xf32>
      func.return %0 : tensor<5x7x9xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top