Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,967 for Size (0.1 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    "tfdtype$DT_FLOAT", "tfdtype$DT_FLOAT"], Tout = ["tfdtype$DT_FLOAT", "tfdtype$DT_FLOAT", "tfdtype$DT_FLOAT", "tfdtype$DT_FLOAT", "tfdtype$DT_FLOAT"], _output_shapes = ["tfshape$dim { size: 9 } dim { size: 10 }", "tfshape$dim { size: -1 } dim { size: 9 } dim { size: 10 }", "tfshape$dim { size: 8 } dim { size: 10 }", "tfshape$dim { size: 8 } dim { size: 10 }", "tfshape$"], _read_only_resource_inputs = [], config = "", config_proto = "\0A\07\0A\03CPU\10\01\0A\07\0A\03GPU\10\002\02J\008\01", device = "", executor_type...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor.cc

        if (buffer == nullptr && size > 0) {
          return absl::InternalError(
              absl::StrFormat("Failed to allocate HostMemory of size %d", size));
        }
        return std::make_unique<HostMemoryAllocation>(buffer, size, this);
      }
    
      void HostMemoryDeallocate(void* mem) override {
        stream_executor_->host_memory_deallocate(&device_, mem);
      }
    
      void* UnifiedMemoryAllocate(uint64 size) override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter_test.cc

    }
    
    void Verify(const RuntimeMetadata* result, const RuntimeMetadata* expected) {
      EXPECT_EQ(result->subgraph_metadata()->size(),
                expected->subgraph_metadata()->size());
      for (int i = 0; i < result->subgraph_metadata()->size(); ++i) {
        auto result_subgraph_metadata =
            result->subgraph_metadata()->GetAs<SubgraphMetadata>(i);
        auto expected_subgraph_metadata =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. cmd/bucket-quota.go

    		if uint64(size) >= quotaSize { // check if file size already exceeds the quota
    			return BucketQuotaExceeded{Bucket: bucket}
    		}
    
    		bui, err := sys.GetBucketUsageInfo(ctx, bucket)
    		if err != nil {
    			return err
    		}
    
    		if bui.Size > 0 && ((bui.Size + uint64(size)) >= quotaSize) {
    			return BucketQuotaExceeded{Bucket: bucket}
    		}
    	}
    
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. src/main/resources/fess_config.properties

    page.user.max.fetch.size=1000
    page.role.max.fetch.size=1000
    page.group.max.fetch.size=1000
    page.crawling.info.param.max.fetch.size=100
    page.crawling.info.max.fetch.size=1000
    page.data.config.max.fetch.size=100
    page.web.config.max.fetch.size=100
    page.file.config.max.fetch.size=100
    page.duplicate.host.max.fetch.size=1000
    page.failure.url.max.fetch.size=1000
    page.favorite.log.max.fetch.size=100
    page.file.auth.max.fetch.size=100
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    	{as: AAND, a1: C_REG, a2: C_REG, a6: C_REG, type_: 6, size: 4}, /* logical, no literal */
    	{as: AAND, a1: C_REG, a6: C_REG, type_: 6, size: 4},
    	{as: AANDCC, a1: C_REG, a2: C_REG, a6: C_REG, type_: 6, size: 4},
    	{as: AANDCC, a1: C_REG, a6: C_REG, type_: 6, size: 4},
    	{as: AANDCC, a1: C_U16CON, a6: C_REG, type_: 58, size: 4},
    	{as: AANDCC, a1: C_U16CON, a2: C_REG, a6: C_REG, type_: 58, 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)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

            assert buildIdentified.size() == 2
            with(buildIdentified[0].details) {
                assert buildPath == ':'
            }
            with(buildIdentified[1].details) {
                assert buildPath == ':unused'
            }
            def projectsIdentified = operations.progress(ProjectsIdentifiedProgressDetails)
            assert projectsIdentified.size() == 1
            with(projectsIdentified[0].details) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    		// The OS init code failed to fetch the physical page size.
    		throw("failed to get system page size")
    	}
    	if physPageSize > maxPhysPageSize {
    		print("system page size (", physPageSize, ") is larger than maximum page size (", maxPhysPageSize, ")\n")
    		throw("bad system page size")
    	}
    	if physPageSize < minPhysPageSize {
    		print("system page size (", physPageSize, ") is smaller than minimum page size (", minPhysPageSize, ")\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestScenarioDefinitionVerifier.groovy

            if (oldJson != newJson) {
                int size = Math.min(oldJson.performanceTests.size(), newJson.performanceTests.size())
                int firstDifferentElementIndex = size
                for (int i = 0; i < size; ++i) {
                    if (oldJson.performanceTests[i] != newJson.performanceTests[i]) {
                        firstDifferentElementIndex = i
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/encoding/binary/binary.go

    				structSize.Store(t, size)
    			}
    			return size * v.Len()
    		}
    
    	case reflect.Struct:
    		t := v.Type()
    		if size, ok := structSize.Load(t); ok {
    			return size.(int)
    		}
    		size := sizeof(t)
    		structSize.Store(t, size)
    		return size
    
    	default:
    		if v.IsValid() {
    			return sizeof(v.Type())
    		}
    	}
    
    	return -1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top