Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 83 for Ftruncate (0.2 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

          (ValueOp:$value (MoveOp:$move $input, $move_def)),
          (MoveOp (ValueOp $input), $move_def),
          [(SameElementType $input, $value), (HasOneUse $move)]>;
      }
    }
    
    // Returns truncated shape of a ranked-tensor.
    // Prefix-Truncated, here, means eliminating any contiguous 1s' in the lower
    // dimentions of the tensor
    def GetPrefixTruncatedShape: NativeCodeCall<"GetShape($0, true)">;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool.go

    	if err != nil && err != io.EOF {
    		if !isErrBucketNotFound(err) {
    			storageLogOnceIf(ctx, err, "erasure-list-objects-path-"+bucket)
    		}
    		return loi, toObjectErr(err, bucket)
    	}
    	defer merged.truncate(0) // Release when returning
    
    	if contextCanceled(ctx) {
    		return ListObjectVersionsInfo{}, ctx.Err()
    	}
    
    	if versionMarker == "" {
    		o := listPathOptions{Marker: marker}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  3. pkg/controller/endpoint/endpoints_controller_test.go

    			if tc.expectedAnnotation {
    				if !ok {
    					t.Errorf("Expected EndpointsOverCapacity annotation to be set")
    				} else if actualAnnotation != "truncated" {
    					t.Errorf("Expected EndpointsOverCapacity annotation to be 'truncated', got %s", actualAnnotation)
    				}
    			} else {
    				if ok {
    					t.Errorf("Expected EndpointsOverCapacity annotation not to be set, got %s", actualAnnotation)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOV(WZ|WZ|WZ|W|W|W)reg y:(MOV(WZ|HZ|BZ|W|H|B)reg _)) => y // repeat
    (MOVWZreg y:(MOV(H|W)BRload _ _)) => y
    
    (MOV(W|WZ)reg y:(MOV(WZ|W)reg x)) => (MOV(W|WZ)reg x)
    
    // Truncate then logical then truncate: omit first, lesser or equal truncate
    (MOVWZreg ((OR|XOR|AND) <t> x (MOVWZreg y))) => (MOVWZreg ((OR|XOR|AND) <t> x y))
    (MOVHZreg ((OR|XOR|AND) <t> x (MOVWZreg y))) => (MOVHZreg ((OR|XOR|AND) <t> x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      }
    
      mlir::ElementsAttr value;
      if (tfl::IsQuantized(tensor)) {
        bool truncate = shaped_type.getElementType().getIntOrFloatBitWidth() == 64;
        TF_ASSIGN_OR_RETURN(value,
                            tfl::ConvertIntBuffer(shaped_type, buffer, truncate));
        TF_ASSIGN_OR_RETURN(
            mlir::quant::QuantizedType type,
            tfl::GetQuantizedType(tensor, builder, /*is_constant=*/true,
    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. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    static Value CreateTFCastOpI32(OpBuilder *builder, Location loc, Value x,
                                   BoolAttr truncate) {
      auto x_type = mlir::dyn_cast_or_null<ShapedType>(x.getType());
      if (!x_type) llvm_unreachable("unsupported type");
      Type type = x_type.clone(builder->getI32Type());
      return builder->create<TF::CastOp>(loc, type, x, truncate);
    }
    }  // namespace
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    		// If the module (toolchain-speak for "executable or shared
    		// library") we are linking contains the runtime package, it
    		// will define the runtime.firstmoduledata symbol and we
    		// truncate it back to 0 bytes so we can define its entire
    		// contents in symtab.go:symtab().
    		mdsb.SetSize(0)
    
    		// In addition, on ARM, the runtime depends on the linker
    		// recording the value of GOARM.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
        }
    
        // The future may complete while calculating the toString, so we check once more to see if the
        // future is done
        if (isDone()) {
          // Truncate anything that was appended before realizing this future is done
          builder.delete(truncateLength, builder.length());
          addDoneString(builder);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  9. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
        }
    
        // The future may complete while calculating the toString, so we check once more to see if the
        // future is done
        if (isDone()) {
          // Truncate anything that was appended before realizing this future is done
          builder.delete(truncateLength, builder.length());
          addDoneString(builder);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    For example, the following task truncates filenames:
    
    ====
    include::sample[dir="snippets/files/copy/kotlin",files="build.gradle.kts[tags=truncate-names-example]"]
    include::sample[dir="snippets/files/copy/groovy",files="build.gradle[tags=truncate-names-example]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top